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": "upload-and-separate-vocals",
  "callback_url": "https://your-domain.com/callback",
  "input": {
    "title": "My Audio Track",
    "audio_url": "https://example.com/audio/my-track.mp3",
    "model_name": "base",
    "output_type": "general"
  }
}
'
{
  "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

Vocal Separation Options:
  • This endpoint uploads audio and separates it into multiple stems
  • Creates separate tracks for bass, drums, piano, guitar, vocals, and other
  • Useful for remixing or isolating specific instruments from uploaded audio

Parameter Details

  • audio_url (required): URL of the audio file to upload and separate
  • title (optional): Title for the separation task
  • model_name (optional): Separation model to use. Default: base
    • base: Standard separation quality
    • enhanced: Higher quality separation with better accuracy
    • instrumental: Optimized for instrumental tracks
  • output_type (optional): Type of output stems to generate. Default: general
    • general: All available stems
    • bass: Bass track only
    • drums: Drums track only
    • other: Other instruments
    • piano: Piano track only
    • guitar: Guitar track only
    • vocals: Vocals track only

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 upload-and-separate-vocals for this endpoint.

Available options:
upload-and-separate-vocals
Example:

"upload-and-separate-vocals"

callback_url
string<uri>
required

Webhook callback URL for result notifications.

The endpoint will receive POST requests with separation completion status and download URLs for each track.

Example:

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

input
object
required

Input parameters for upload and vocal separation

Response

Task submitted successfully

code
integer
required

HTTP status code

Example:

200

data
object
required