Skip to main content
GET
/
agents
/
{agent_id}
Get Agent
curl --request GET \
  --url https://api.truedy.ai/api/public/v1/agents/{agent_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "agt_f9447372",
    "name": "Customer Support Agent",
    "description": "Handles inbound support inquiries",
    "status": "active",
    "model": "ultravox-v0.7",
    "voice_id": "voice_c7d82fec",
    "voice_name": "Sarah",
    "system_prompt": "You are a helpful customer support agent. Be friendly and professional.",
    "greeting": "Hello! Thanks for calling. How can I help you today?",
    "inactivity_message": "Are you still there? Take your time.",
    "inactivity_timeout": 30,
    "max_duration": 1800,
    "tools": [
      "tool_p1q2r3s4"
    ],
    "knowledge_base_ids": [
      "kb_x9y8z7w6"
    ],
    "created_at": "2026-03-15T09:00:00Z",
    "updated_at": "2026-04-01T14:30:00Z"
  },
  "meta": {
    "request_id": "req_32e7531c",
    "ts": "2026-04-05T10:22:00Z"
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header: Bearer <your_api_key>

Path Parameters

agent_id
string
required

Agent ID

Response

Agent details

data
object
required
meta
object
required