cURL
curl --request GET \ --url https://api.example.com/components
List all components with optional filtering and pagination.
component_type
string
None
agent
team
workflow
page
int
1
limit
20
200
PaginatedResponse[ComponentResponse]
{ "data": [ { "component_id": "my-research-agent", "component_type": "agent", "name": "Research Agent", "description": "An agent that researches topics", "current_version": 3, "metadata": {}, "created_at": "2025-01-15T10:30:00Z", "updated_at": "2025-01-16T14:20:00Z" } ], "meta": { "page": 1, "limit": 20, "total_pages": 1, "total_count": 1, "search_time_ms": 5 } }
Was this page helpful?