List Agents

Retrieve all agents for the authenticated user.

GET/v2/agents

List all agents owned by the authenticated user.

Query Parameters

Max results to return
Pagination offset

Query Parameters

ParameterTypeDefaultDescription
limitinteger50Maximum number of agents to return (1–100)
offsetinteger0Number of agents to skip for pagination

Response 200

{
  "agents": [
    {
      "id": "ag_c47e7c97_b2f2",
      "name": "Sales Agent",
      "model": "gpt-4o",
      "agentType": "simple",
      "voiceEnabled": false,
      "createdAt": "2026-03-07T10:00:00Z"
    },
    {
      "id": "ag_d58f8d08_c3g3",
      "name": "Phone Support",
      "model": "claude-3-5-sonnet-20241022",
      "agentType": "simple",
      "voiceEnabled": true,
      "createdAt": "2026-03-06T08:30:00Z"
    },
    {
      "id": "ag_e69g9e19_d4h4",
      "name": "Order Workflow",
      "model": "gpt-4o",
      "agentType": "graph",
      "voiceEnabled": false,
      "createdAt": "2026-03-05T14:15:00Z"
    }
  ],
  "total": 3
}

Response Fields

FieldTypeDescription
agentsarrayList of agent summaries
agents[].idstringAgent public ID (format: ag_*)
agents[].namestringAgent display name
agents[].modelstringLLM model identifier
agents[].agentTypestringsimple, graph, or workflow
agents[].voiceEnabledbooleanWhether voice/phone is enabled
agents[].createdAtstringISO 8601 creation timestamp
totalintegerTotal number of agents

Errors

CodeDescription
401Missing or invalid authentication

On this page