Skip to main content
POST
/
api
/
generate
/
submit
Submit Music Cover Generation Task
curl --request POST \
  --url https://api.vidgo.ai/api/generate/submit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "generate-music-cover",
  "callback_url": "https://your-domain.com/callback",
  "input": {
    "task_id": "73d6128b3523a0079df10da9471017c8"
  }
}
'
{
  "code": 200,
  "data": {
    "task_id": "task-unified-1757165031-uyujaw3d",
    "status": "not_started",
    "created_time": "2025-11-12T10:30:00"
  }
}
  1. After submission, a task_id will be returned. If you provided a callback_url, when the task status becomes finished or failed, a POST request will be sent to the callback_url.
  2. Regardless of whether callback_url is provided, you can retrieve the response result through the unified Query Music Detail endpoint.

Usage Guide

  • This endpoint creates a cover version of an existing music track
  • Requires a valid task_id from a previously generated music task
  • The cover will be a new interpretation of the original track

Parameter Details

  • task_id (required): The task ID from a completed music generation task
    • Must be a valid task_id returned from the Generate Music or Extend Music endpoints
    • The original task must have completed successfully

Developer Notes

  • A cover can only be generated once per original task
  • Results are delivered via the callback URL when processing is complete

Authorizations

Authorization
string
header
required

All API endpoints require Bearer Token authentication

Get your API Key:

Visit the API Key Management Page to get your API Key

Add it to the request header:

Authorization: Bearer VIDGO_API_KEY

Body

application/json
model
enum<string>
required

API model identifier.

Must be generate-music-cover for this endpoint.

Available options:
generate-music-cover
Example:

"generate-music-cover"

callback_url
string<uri>
required

Webhook callback URL for result notifications.

The system will send POST requests to this URL when cover generation is complete, including task status and results.

Example:

"https://your-domain.com/callback"

input
object
required

Input parameters for cover generation

Response

200 - application/json

Task submitted successfully

code
integer
required

HTTP status code

Example:

200

data
object
required