Speechbase

List providers

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

GET
/v1/audio/providers

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

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,
      "managed": true,
      "models": [
        "string"
      ]
    }
  ]
}
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "code": "string",
  "validation": [
    {
      "path": [
        "string"
      ],
      "message": "string"
    }
  ],
  "provider": "string",
  "upstream_code": "string",
  "upstream_status": 0,
  "turn_index": 0
}