Agents
Get Agent
Get basic agent information
GET
Get Agent
Get Agent
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
AgentFlow is built by ES Consulting — production AI systems, delivered.
Get basic agent information
curl --request GET \
--url https://api.example.com/api/v1/agent/{id}| Parameter | Type | Description |
|---|---|---|
id | string | The agent’s unique identifier |
{
"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
}
}
Was this page helpful?
curl --request GET \
--url https://api.example.com/api/v1/agent/{id}