Skip to main content
POST
/
api
/
generate
/
submit
curl --request POST \
  --url https://api.vidgo.ai/api/generate/submit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "replace-section",
  "callback_url": "https://your-domain.com/callback",
  "input": {
    "task_id": "5c79xxxxbe8e",
    "audio_id": "e231xxxx-xxxx-xxxx-xxxx-xxxx8cadc7dc",
    "prompt": "A powerful chorus with soaring vocals",
    "tags": "pop, upbeat",
    "title": "Summer Dreams",
    "infill_start_s": 30,
    "infill_end_s": 60
  }
}
'
{
  "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 replaces a specific time range of an existing music track with new content
  • Useful for editing verses, choruses, or any specific part of a generated track
  • The replacement content is generated based on your prompt and style tags

Parameter Details

  • task_id (required): The original task ID from a completed music generation
  • audio_id (required): The specific audio track identifier from the callback data
  • prompt (required): Description of the replacement content (lyrics or musical description)
  • tags (required): Style tags for the replacement section
  • title (required): Title for the resulting track
  • infill_start_s (required): Start time in seconds (minimum 0, up to 2 decimals)
  • infill_end_s (required): End time in seconds (must be greater than start time)

Developer Notes

  • Ensure infill_end_s is always greater than infill_start_s
  • The time range should be within the duration of the original track
  • Use full_lyrics when you want to maintain lyrical consistency across the entire track

Optional parameters

  • negative_tags (string): Styles to exclude from the replacement section
  • full_lyrics (string): Complete lyrics for the entire track after modification
  • callback_url (string): Webhook URL for receiving completion notifications

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 replace-section for this endpoint.

Available options:
replace-section
Example:

"replace-section"

input
object
required

Input parameters for section replacement

callback_url
string<uri>

Webhook callback URL for result notifications

Example:

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

Response

200 - application/json

Task submitted successfully

code
integer
required

HTTP status code

Example:

200

data
object
required