List voices
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`.
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.
Authorization
bearerAuth API key
In: header
Query Parameters
Maximum number of items to return. Defaults to 50, max 200.
1 <= value <= 200Opaque pagination cursor. Pass back the next_cursor value from a previous response.
1 <= lengthResponse Body
application/json
application/problem+json
application/problem+json
curl -X GET "https://example.com/v1/voices" \ -H "Authorization: Bearer $SPEECHBASE_API_KEY"{
"data": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"org_id": "string",
"title": "string",
"provider": "string",
"model": "string",
"voice_id": "string",
"tags": [
"string"
],
"gender": "string",
"description": "string",
"provider_options": {
"property1": null,
"property2": null
},
"created_at": "string",
"updated_at": "string"
}
],
"next_cursor": "string",
"has_more": true,
"limit": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string"
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string"
}List providers GET
Returns the catalog of TTS providers with their available models and the authenticated organization's per-provider configuration (enabled, byok).
Create a voice POST
Creates a new voice for the authenticated organization. Optionally links a pre-uploaded media file via mediaId for voice cloning.