v1

latestOpenAPI 3.0.02026-07-26152942.8 KB
custom_voices

Search custom (cloned) voices

Search and filter custom (cloned) voices based on various parameters. Space-separated terms in name/description fields use AND condition (all terms must be present).

get/v1/custom-voices/search

Query parameters

page_sizenumber

Number of items per page (default: 20, min: 10, max: 100)

next_page_tokenstring

Token for pagination (obtained from the previous page's response)

namestring

Search across name. Space separated.

descriptionstring

Search across description. Space separated.

Response

Paginated custom voices search response with next page token

totalnumber required

Total number of available custom voices

next_page_tokenstring

Token for fetching the next page of results. A valid non-negative integer string (e.g., "10", "20"). Null if no more pages.

Example response

{
  "items": [
    {
      "voice_id": "voice_123456789",
      "name": "My Custom Voice",
      "description": "A warm and friendly voice for customer service"
    }
  ],
  "total": 25,
  "next_page_token": "10"
}