cURL
curl --request GET \ --url https://api.example.com/components/{component_id}/configs
List all config versions for a component.
component_id
string
include_config
bool
true
200
List[ComponentConfigResponse]
[ { "component_id": "my-research-agent", "version": 1, "label": "v1.0", "stage": "published", "config": { ... }, "notes": "Initial version", "created_at": "2025-01-15T10:30:00Z", "updated_at": "2025-01-15T10:30:00Z" }, { "component_id": "my-research-agent", "version": 2, "label": "v1.1-improved-instructions", "stage": "draft", "config": { ... }, "notes": "Updated instructions", "created_at": "2025-01-16T14:20:00Z", "updated_at": "2025-01-16T14:20:00Z" } ]
Was this page helpful?