Skip to main content
GET
/
api
/
agents
/
{agent_id}
Get Agent
curl --request GET \
  --url https://api.example.com/api/agents/{agent_id}
{
  "agent_id": "agent_12345",
  "client_id": "org_123",
  "agent_name": "Sales Rep",
  "stt_provider": "deepgram",
  "tts_provider": "elevenlabs",
  "tts_voice": "21m00Tcm4TlvDq8ikWAM",
  "llm_provider": "openai",
  "llm_model": "gpt-4o",
  "system_prompt": "You are a helpful sales representative...",
  "speak_first": true,
  "recording_enabled": true,
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-02T00:00:00Z"
}
Retrieve the configuration details of a specific agent.
agent_id
string
required
The unique identifier of the agent.

Response

Returns the full agent configuration object.
{
  "agent_id": "agent_12345",
  "client_id": "org_123",
  "agent_name": "Sales Rep",
  "stt_provider": "deepgram",
  "tts_provider": "elevenlabs",
  "tts_voice": "21m00Tcm4TlvDq8ikWAM",
  "llm_provider": "openai",
  "llm_model": "gpt-4o",
  "system_prompt": "You are a helpful sales representative...",
  "speak_first": true,
  "recording_enabled": true,
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-02T00:00:00Z"
}