For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • Voices
    • Overview
    • List Voices
    • Get Voice
    • Delete Voice
  • Recordings
    • Overview
    • List Recordings
    • Get Recording
    • Create Recording
    • Update Recording
    • Delete Recording
  • Projects & Clips
  • Voice Settings
    • Overview
    • List Presets
    • Get Preset
    • Create Preset
    • Update Preset
    • Delete Preset
  • Custom Pronunciations
    • Overview
    • Create Pronunciation
    • Bulk Create from ZIP
    • List Pronunciations
    • Get Pronunciation
    • Toggle Active Status
    • Delete Pronunciation
  • Account & Billing
    • Overview
    • Get Account
    • Teams
    • Billing Usage
Status
LogoLogo
Voices

List Voices

Was this page helpful?
Previous

Get Voice

Next
Built with

GET https://app.resemble.ai/api/v2/voices

Retrieve a paginated list of voices accessible to the user.

ParameterTypeRequiredNotes
pageinteger❌Page number.
page_sizeinteger❌Items per page.
pre_built_resemble_voiceboolean❌Filter by pre-built voices.
agestring❌Filter by age (comma-separated values).
genderstring❌Filter by gender (comma-separated values).
accentsstring❌Filter by accents (comma-separated values).
use_casestring❌Filter by use case (comma-separated values).
tone_of_voicestring❌Filter by tone (comma-separated values).
advancedboolean❌Include advanced model information.
sample_urlboolean❌Include sample audio URLs.
filtersboolean❌Include filter metadata.
voice_selectorboolean❌Format for voice selector UI.
$curl 'https://app.resemble.ai/api/v2/voices?page=1&page_size=10' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'
1{
2 "success": true,
3 "page": 1,
4 "total_results": 10,
5 "page_count": 1,
6 "items": [
7 {
8 "uuid": "VOICE_UUID",
9 "name": "Production Voice",
10 "status": "ready",
11 "voice_status": "ready",
12 "voice_type": "professional",
13 "default_language": "en-US",
14 "supported_languages": ["en-US"],
15 "dataset_url": null,
16 "callback_uri": null,
17 "source": "Custom Voice",
18 "dataset_analysis_failure": false,
19 "component_status": {
20 "text_to_speech": { "status": "ready" },
21 "fill": { "status": "ready" },
22 "voice_conversion": { "status": "ready" }
23 },
24 "api_support": {
25 "sync_tts": true,
26 "async_tts": true,
27 "fill": true,
28 "sts": true
29 },
30 "created_at": "2024-01-15T10:30:00Z",
31 "updated_at": "2024-01-15T10:32:00Z"
32 }
33 ]
34}