Skip to main content
GET
/
api
/
v1
/
agent
/
{id}
Get Agent
curl --request GET \
  --url https://api.example.com/api/v1/agent/{id}

Path Parameters

ParameterTypeDescription
idstringThe agent’s unique identifier

Response

{
  "id": "agent_abc123",
  "name": "my-assistant",
  "label": "My Assistant",
  "description": "A helpful assistant",
  "icon": "sparkles",
  "icon_type": "heroicon",
  "icon_url": null,
  "icon_display": "sparkles",
  "tool_count": 2,
  "sub_agent_count": 1,
  "capabilities": {
    "planning": true,
    "reflection": true
  }
}