Skip to main content
GET
/
components
List Components
curl --request GET \
  --url https://api.example.com/components \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "component_id": "<string>",
      "component_type": "agent",
      "created_at": 123,
      "name": "<string>",
      "description": "<string>",
      "current_version": 123,
      "metadata": {},
      "updated_at": 123
    }
  ],
  "meta": {
    "page": 0,
    "limit": 20,
    "total_pages": 0,
    "total_count": 0,
    "search_time_ms": 0
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

component_type
enum<string> | null

Filter by type: agent, team, workflow

Available options:
agent,
team,
workflow
page
integer
default:1

Page number

Required range: x >= 1
limit
integer
default:20

Items per page

Required range: 1 <= x <= 100

Response

Successful Response

data
ComponentResponse · object[]
required

List of items for the current page

meta
PaginationInfo · object
required

Pagination metadata