Skip to main content
POST
/
admin
/
providers
/
validate
/
llm
Validate Llm Provider
curl --request POST \
  --url https://api.example.com/admin/providers/validate/llm \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "provider": "<string>",
  "provider_type": "<string>",
  "voice_id": "<string>",
  "model": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Body

application/json

Request model for single provider validation.

provider
string
required

Provider name (e.g., 'elevenlabs', 'deepgram')

provider_type
string
required

Provider type: 'tts', 'stt', or 'llm'

voice_id
string | null

Voice ID (for TTS)

model
string | null

Model name (for STT/LLM)

Response

Successful Response