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

Get Single Voice

GET
https://developer.voicemaker.in/api/v1/voice-clones/{VoiceId}
Retrieve metadata for a single voice clone by id.

Request

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

Responses

🟢200OK
application/json
Successful clone object
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://developer.voicemaker.in/api/v1/voice-clones/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "success": true,
    "data": {
        "removeBackground": false,
        "VoiceId": "proplus-dfQJ9GXAUz",
        "description": "MagicalMan",
        "Engine": "neural",
        "name": "MagicalMan",
        "labels": {
            "category": "Animation & Characters"
        },
        "samples": [
            {
                "_id": "6914cc5d959ad34ccf34a959",
                "file": "/voice-clones/files/*",
                "name": "clone-1762970717148901.mp3",
                "size": 2678445,
                "duration": 111.576
            }
        ],
        "path": "/voice-clones/files/*"
    }
}
Modified at 2025-11-22 07:47:01
Previous
List Voice Clones
Next
Edit Voice Clone
Built with