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

Edit Voice Clone

PUT
https://developer.voicemaker.in/api/v1/voice-clones/{VoiceId}
Edit metadata of an existing voice clone in your account.
This endpoint does not support modifying or re-cloning the actual voice. To change the voice itself, delete the existing clone and create a new one.

Request

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

Body Params multipart/form-dataRequired

Responses

🟢200OK
application/json
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://developer.voicemaker.in/api/v1/voice-clones/' \
--header 'Authorization: Bearer <token>' \
--form 'name=""' \
--form 'description=""' \
--form 'labels=""'
Response Response Example
{
    "success": true,
    "message": "Voice Clone updated successfully",
    "voiceClone": {
        "VoiceId": "proplus-voice_id",
        "name": "Updated voice name",
        "description": "Updated voice description",
        "Engine": "neural",
        "removeBackground": true,
        "labels": {
            "category": "Professional",
            "accent": "American",
            "gender": "Female",
            "age": "Adult"
        },
        "samples": [],
        "audioUrl": "/voice-clones/files/",
        "createdAt": "timestamp",
        "updatedAt": "timestamp"
    }
}
Modified at 2025-12-24 10:16:06
Previous
Get Single Voice
Next
Delete Voice Clone
Built with