Developers

Open API & MCP

Generate cinematic AI video from any script, agent, or app. Stateless REST endpoints with Bearer-token auth — fully MCP-compatible so AI assistants can drive VidSpark directly.

Authentication

Pass your key as a Bearer token on every request.

Authorization: Bearer vs_live_your_key_here

Generate a video

curl -X POST https://vidsparkstudio.com/api/v1/generate \
  -H "Authorization: Bearer vs_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Cinematic drone shot over a neon city at night",
    "model": "seedance_2",
    "aspect_ratio": "16:9",
    "duration": "5"
  }'

Poll status & get the video URL

curl https://vidsparkstudio.com/api/v1/status/{id}?endpoint=... \
  -H "Authorization: Bearer vs_live_xxx"

# → { "status": "completed", "video_url": "https://..." }

List models

curl https://vidsparkstudio.com/api/v1/models

Endpoints

POST/api/v1/generate
GET/api/v1/status/:id
GET/api/v1/models

Need an API key? Grab credits and start automating in minutes.

Get an API key →