DashboardAPI DocsChangelogSystem StatusMy Account
DashboardAPI DocsChangelogSystem StatusMy Account
  1. Text to Speech API
  • Introduction
  • Voice Library
  • API Authentication
  • Text to Speech API
    • WebSocket
    • Generate TTS
      POST
    • List Voices
      POST
  • VoxFX Effects API
    • Generate TTS with VoxFX
      POST
    • List VoxFX Effects
      GET
  • Voice Cloning API
    • Create Voice Clone
      POST
    • List Voice Clones
      GET
    • Get Single Voice
      GET
    • Edit Voice Clone
      PUT
    • Delete Voice Clone
      DELETE
DashboardAPI DocsChangelogSystem StatusMy Account
DashboardAPI DocsChangelogSystem StatusMy Account
  1. Text to Speech API

List Voices

POST
https://developer.voicemaker.in/api/v1/voice/list
Retrieve a list of all available voices (excluding voice clones).
For retrieving the voice list via the API, we do not collect or count the requests.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Successful retrieval of voice list
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://developer.voicemaker.in/api/v1/voice/list' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "language": "en-US"
}'
Response Response Example
{
    "success": true,
    "data": {
        "voices_list": [
            {
                "Engine": "neural",
                "VoiceId": "ai1-Joanna",
                "VoiceGender": "Female",
                "VoiceWebname": "Joanna",
                "Country": "US",
                "Language": "en-US",
                "LanguageName": "English, US"
            }
        ]
    }
}
Modified at 2025-11-23 04:21:19
Previous
Generate TTS
Next
Generate TTS with VoxFX
Built with