Skip to main content
POST
/
admin
/
providers
/
validate
Validate Provider Configuration
curl --request POST \
  --url https://api.example.com/admin/providers/validate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "voice_provider": "elevenlabs",
  "voice_id": "<string>",
  "transcriber_provider": "deepgram",
  "transcriber_model": "<string>",
  "model_provider": "openai",
  "model_name": "<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 provider validation.

voice_provider
string | null
default:elevenlabs

TTS provider name

voice_id
string | null

Voice ID to validate

transcriber_provider
string | null
default:deepgram

STT provider name

transcriber_model
string | null

STT model to validate

model_provider
string | null
default:openai

LLM provider name

model_name
string | null

LLM model to validate

Response

Successful Response