Skip to main content
GET
/
api
/
agents
/
{agent_id}
Get Agent
curl --request GET \
  --url http://localhost:8000/api/agents/{agent_id}
{
  "name": "<string>",
  "type": "STT",
  "id": "<string>",
  "is_active": true,
  "user_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "config": {},
  "phone_number": "<string>",
  "twilio_sid": "<string>"
}

Path Parameters

agent_id
string
required

Response

Successful Response

name
string
required
type
enum<string>
required
Available options:
STT,
LLM,
TTS,
PIPELINE
id
string
required
is_active
boolean
required
user_id
string
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
description
string | null
config
Config · object
phone_number
string | null
twilio_sid
string | null