Skip to main content
GET
/
v1
/
agents
List agents
curl --request GET \
  --url https://api.slng.ai/v1/agents \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "organisation_id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "<string>",
    "system_prompt": "<string>",
    "greeting": "<string>",
    "language": "<string>",
    "models": {
      "stt": "slng/deepgram/nova:3-en",
      "llm": "groq/moonshotai/kimi-k2-instruct-0905",
      "tts": "slng/deepgram/aura:2-en",
      "tts_voice": "aura-2-thalia-en",
      "stt_kwargs": {},
      "llm_kwargs": {},
      "tts_kwargs": {}
    },
    "enable_interruptions": true,
    "tools": [
      {
        "type": "template",
        "id": "550e8400-e29b-41d4-a716-446655440000",
        "template": "hangup",
        "prompt": "<string>",
        "execution_policy": {
          "pre_action_message": {
            "enabled": false,
            "text": "<string>"
          }
        }
      }
    ],
    "livekit_deployment": "<string>",
    "template_variables": {},
    "created_at": "2026-01-15T10:30:00Z",
    "updated_at": "2026-01-15T10:30:00Z",
    "inbound_greeting": "<string>",
    "outbound_greeting": "<string>",
    "sip_inbound_trunk_id": "550e8400-e29b-41d4-a716-446655440000",
    "sip_outbound_trunk_id": "550e8400-e29b-41d4-a716-446655440000",
    "deleted_at": "2026-01-15T10:30:00Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

List of agents.

id
string<uuid>
required
Example:

"550e8400-e29b-41d4-a716-446655440000"

organisation_id
string<uuid>
required
Example:

"550e8400-e29b-41d4-a716-446655440000"

name
string
required
system_prompt
string
required
greeting
string
required
language
string
required
models
object
required

Model configuration for the agent runtime (STT + LLM + TTS).

enable_interruptions
boolean
required
tools
(Built-in · object | Webhook · object | Human transfer · object)[]
required
livekit_deployment
string
required
template_variables
object
required
created_at
string<date-time>
required
Example:

"2026-01-15T10:30:00Z"

updated_at
string<date-time>
required
Example:

"2026-01-15T10:30:00Z"

inbound_greeting
string | null
outbound_greeting
string | null
sip_inbound_trunk_id
string<uuid> | null
Example:

"550e8400-e29b-41d4-a716-446655440000"

sip_outbound_trunk_id
string<uuid> | null
Example:

"550e8400-e29b-41d4-a716-446655440000"

deleted_at
string<date-time> | null
Example:

"2026-01-15T10:30:00Z"