List providers
Returns the catalog of TTS providers with their available models and the authenticated organization's per-provider configuration (enabled, byok).
Returns the catalog of TTS providers with their available models and the authenticated organization's per-provider configuration (enabled, byok).
Authorization
bearerAuth 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"
}Generate conversation with timestamps POST
Synthesizes a multi-turn conversation and returns a JSON envelope with base64 audio and word-level timestamps mapped back to each originating turn.
List voices GET
Returns a cursor-paginated page of voices for the authenticated organization, ordered by creation date (newest first). Pass `next_cursor` from one response back as `cursor` on the next call until `has_more` is `false`.