Skip to main content
GET
/
api
/
v1
/
agent
List Agents
curl --request GET \
  --url https://api.example.com/api/v1/agent/
Returns a list of all configured agents.

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
    }
  }
]