GET

List Agents

Returns a paginated list of Agents in your sub-account.

GEThttps://api.vantaxai.com/v1/agents

Agents are returned newest-first. Use the `limit` and `starting_after` cursor parameters to page through large collections.

Headers

  • Authorizationstringrequired

    Bearer authentication with your secret API key.

    example: Bearer vx_live_3fa9c2…

Query Parameters

  • sub_account_idstringrequired

    The sub-account to list Agents for.

    example: sub_8a1f4c2e

  • limitintegeroptional

    Number of records to return (1–100). Defaults to 20.

    example: 20

  • starting_afterstringoptional

    Cursor for pagination — an Agent id to start after.

    example: agt_3d9b21

  • is_activebooleanoptional

    Filter by active state.

    example: true

Request

curl https://api.vantaxai.com/v1/agents?sub_account_id=sub_8a1f4c2e \
  -H "Authorization: Bearer vx_live_3fa9c2..."

Response

{
  "success": true,
  "data": [
    {
      "id": "agt_3d9b21",
      "name": "Front Desk Agent",
      "description": "Handles inbound scheduling calls",
      "voice_id": "voice_aria",
      "knowledgebase_id": "kb_71ac0",
      "calendar_id": "cal_22f9",
      "ai_model": "gpt-4o",
      "language": "en-US",
      "is_active": true,
      "created_at": "2026-01-14T10:30:00Z"
    }
  ],
  "pagination": {
    "total": 4,
    "limit": 20,
    "has_more": false
  }
}