API Reference
Models

List the AI model catalog

GET
/v1/models

The models an agent's model field may reference, each with its selectable voices and per-minute AI rate (metered per second).

Authorization

bearerAuth
AuthorizationBearer <token>

Long-lived ES256 JWT minted from the dashboard (https://app.sautikit.com/developers/api-keys). Signed by the platform keyring. Carries workspace_id and scopes claims; revoked via the platform deny-list.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/models"
{  "data": [    {      "id": "string",      "engine": "string",      "voices": [        "string"      ],      "rate_per_minute_minor": 0,      "currency": "KES"    }  ]}
{  "error": {    "code": "validation.bad_request",    "message": "string",    "request_id": "string"  }}