GET

Get Agent

Retrieves the full configuration of a single Agent.

GEThttps://api.vantaxai.com/v1/agents/{agent_id}

Headers

  • Authorizationstringrequired

    Bearer authentication with your secret API key.

    example: Bearer vx_live_3fa9c2…

Path Parameters

  • agent_idstringrequired

    The Agent's unique identifier.

    example: agt_3d9b21

Request

curl -X GET https://api.vantaxai.com/v1/agents/agt_3d9b21 \
  -H "Authorization: Bearer vx_live_3fa9c2..."

Response

{
  "success": true,
  "data": {
    "id": "agt_3d9b21",
    "name": "Front Desk Agent",
    "system_prompt": "You are a friendly front-desk receptionist...",
    "voice_id": "voice_aria",
    "knowledgebase_id": "kb_71ac0",
    "calendar_id": "cal_22f9",
    "ai_model": "gpt-4o",
    "temperature": 0.7,
    "language": "en-US",
    "recording": true,
    "is_active": true,
    "created_at": "2026-01-14T10:30:00Z",
    "updated_at": "2026-02-02T08:12:00Z"
  }
}