Skip to main content
GET
/
api
/
agents
Get Agents
curl --request GET \
  --url http://localhost:8000/api/agents/
[
  {
    "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>"
  }
]

Headers

x-user-id
string | null

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