Skip to main content
Use /v1/videos/generations for video creation.
curl https://api.apiany.ai/v1/videos/generations \
  -H "Authorization: Bearer $APIANY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-2.0",
    "prompt": "A cinematic product launch shot for an AI API platform",
    "duration": "10s",
    "resolution": "720p",
    "ratio": "16:9"
  }'

Sync variant

/v1/videos/generations/sync waits for the task result in the same HTTP request. Long-running jobs should use async creation and task polling.