DashboardAPI DocsChangelogSystem StatusMy Account
DashboardAPI DocsChangelogSystem StatusMy Account
  1. Voice Cloning 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
  1. Voice Cloning API

List Voice Clones

GET
https://developer.voicemaker.in/api/v1/voice-clones
Retrieve a paginated list of all voice clones created in your account.
Use page and limit to control pagination.

Request

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

Responses

🟢200OK
application/json
List of voice clones retrieved successfully
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://developer.voicemaker.in/api/v1/voice-clones?page&limit' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "success": true,
    "data": [
        {
            "removeBackground": false,
            "VoiceId": "generated_voice_Id",
            "description": "Voice Description",
            "Engine": "neural",
            "name": "My Custom Voice",
            "labels": {
                "category": "Professional",
                "accent": "American",
                "gender": "Female",
                "age": "Adult"
            },
            "samples": [],
            "path": "/uploads/clones/voice_path"
        }
    ],
    "count": 1,
    "clonesLimit": 5
}
Modified at 2025-11-23 04:22:12
Previous
Create Voice Clone
Next
Get Single Voice
Built with