Skip to main content
GET
/
api
/
v1
/
llm
/
models
/
auto
Python (SDK)
from meetkai_mka1 import SDK


with SDK(
    bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:

    res = sdk.llm.models.list_org_auto_models()

    # Handle response
    print(res)
{
  "object": "list",
  "data": [
    {
      "endpoint": "tts",
      "model_id": "openai:tts-1",
      "set_by": "user-org-admin-1",
      "set_at": "2026-06-23T18:00:00.000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Gateway auth: send Authorization: Bearer <mka1-api-key>. For multi-user server-side integrations, you can also send X-On-Behalf-Of: <external-user-id>.

Response

200 - application/json

OK

object
any
required
data
object[]
required