SMAO API Documentation
Public APIAssistants

List assistants (paginated)

GET
/assistants

Authorization

bearerAuth
AuthorizationBearer <token>

API key in the Authorization: Bearer <key> header. Keys are created in the SMAO dashboard (Settings → API Keys).

In: header

Query Parameters

cursor?string

Opaque cursor from a prior meta.next_cursor. Base64url-encoded (unpadded) — do not parse or construct it manually.

Match^[A-Za-z0-9_-]+$
limit?integer

Items per page (1–100, default 50).

Range1 <= value <= 100
Default50

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/assistants"
{  "data": [    {      "id": "string",      "name": "string",      "description": "string",      "language": "de",      "voice_id": "string",      "record_call": true,      "speed": 0.7,      "tts_style_level": 0,      "background_ambience": "clean",      "interruptable": true,      "appointment_booking_enabled": true,      "contextual_asr_correction_enabled": true,      "allow_preferred_language": true,      "whitelist": true,      "introduction": "string",      "company_name": "string",      "company_industry": "string",      "phone_number": "string",      "carrier": "string",      "prompt_id": "string",      "email_prompt_id": "string",      "knowledge_group_ids": [        "string"      ],      "glossary_group_ids": [        "string"      ],      "pronunciation_group_ids": [        "string"      ],      "forwarding_group_ids": [        "string"      ],      "contact_group_ids": [        "string"      ],      "calendar_ids": [        "string"      ],      "tool_ids": [        "string"      ],      "analysis_ids": [        "string"      ],      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z"    }  ],  "meta": {    "has_more": true,    "next_cursor": "string"  }}