Skip to main content
GET
/
components
/
{component_id}
/
configs
List Config Versions
curl --request GET \
  --url https://api.example.com/components/{component_id}/configs

Path Parameters

ParameterTypeDescription
component_idstringThe component ID

Query Parameters

ParameterTypeDefaultDescription
include_configbooltrueInclude the full config dict in the response

Response 200

Returns a 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"
  }
]