Speechbase

List providers

Returns the catalog of TTS providers with their available models and the authenticated organization's per-provider configuration (enabled, byok).

GET
/v1/audio/providers

Returns the catalog of TTS providers with their available models and the authenticated organization's per-provider configuration (enabled, byok).

Authorization

bearerAuth
AuthorizationBearer <token>

API key

In: header

Response Body

application/json

application/problem+json

curl -X GET "https://example.com/v1/audio/providers" \  -H "Authorization: Bearer $SPEECHBASE_API_KEY"
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "enabled": true,
      "byok": true,
      "models": [
        "string"
      ]
    }
  ]
}
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string"
}