GET
/
v1
/
components
curl --request GET \
  --url https://api.edgee.app/v1/components \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "url": "<string>",
  "has_more": true,
  "last_key": "<string>",
  "data": [
    {
      "object": "component",
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "avatar_url": "<string>",
      "category": "<string>",
      "subcategory": "<string>",
      "description": "<string>",
      "latest_version": "<string>",
      "versions": {},
      "repo_link": "<string>",
      "documentation_link": "<string>",
      "created_at": "2022-03-01T00:00:00Z",
      "updated_at": "2022-03-01T00:00:00Z",
      "is_public": false,
      "is_archived": false
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token. More info here

Query Parameters

category
enum<string>

Filter components by category.

Available options:
data_collection
subcategory
enum<string>

Filter components by sub category.

Available options:
analytics,
warehouse,
attribution,
conversion api,
server side tagging

Response

200
application/json

A list of Components

The response is of type object.