Conversion Endpoints
Cover
Convert an audio file or URL into a cover song using a different voice.
POST
/
Cover
Copy
curl --request POST \
--url https://api.musicgpt.com/api/public/v1/Cover \
--header 'Authorization: <api-key>' \
--header 'Content-Type: multipart/form-data' \
--form audio_url= \
--form 'voice_id=<string>' \
--form pitch=0 \
--form webhook_url=
Copy
{
"success": true,
"task_id": "b329c0df-b2eb-4914-b707-4d7dce53577e",
"conversion_id": "16708396-da86-4a9e-9b90-66f774cc2382",
"eta": 33
}
Authorizations
Body
multipart/form-data
Response
200
application/json
Successful response
The response is of type object
.
Copy
curl --request POST \
--url https://api.musicgpt.com/api/public/v1/Cover \
--header 'Authorization: <api-key>' \
--header 'Content-Type: multipart/form-data' \
--form audio_url= \
--form 'voice_id=<string>' \
--form pitch=0 \
--form webhook_url=
Copy
{
"success": true,
"task_id": "b329c0df-b2eb-4914-b707-4d7dce53577e",
"conversion_id": "16708396-da86-4a9e-9b90-66f774cc2382",
"eta": 33
}
Assistant
Responses are generated using AI and may contain mistakes.