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

Path Parameters

ParameterTypeDescription
component_idstringThe component ID

Response 200

Returns the ComponentConfigResponse for the current active version.
{
  "component_id": "my-research-agent",
  "version": 3,
  "label": "v1.2",
  "stage": "published",
  "config": {
    "model": "gpt-5-mini",
    "tools": ["WebSearchTools"],
    "instructions": "Research topics thoroughly using web search."
  },
  "notes": "Improved instructions",
  "created_at": "2025-01-16T14:20:00Z",
  "updated_at": "2025-01-16T14:20:00Z"
}