Skip to main content
POST
https://api.modelhunter.ai
/
api
/
v1
/
seedance
/
text-to-video
Text to Video
curl --request POST \
  --url https://api.modelhunter.ai/api/v1/seedance/text-to-video \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "input": {
    "prompt": "<string>",
    "duration": 123,
    "resolution": "<string>",
    "ratio": "<string>",
    "seed": 123,
    "camera_fixed": true,
    "watermark": true,
    "generate_audio": true,
    "return_last_frame": true
  },
  "webhookUrl": "<string>",
  "metadata": {}
}
'
{
  "success": true,
  "data": {
    "id": "task_abc123",
    "status": "pending",
    "type": "text-to-video",
    "provider": "seedance",
    "model": "seedance-1-5-pro",
    "created_at": "2026-01-15T10:00:00Z",
    "estimated_seconds": 40
  }
}

Body Parameters

model
string
required
Seedance model. Options:
  • seedance-1-5-pro — Latest flagship, audio-visual generation, $0.12/sec
  • seedance-1-0-pro — Multi-shot narrative, cinematic quality, $0.10/sec
  • seedance-1-0-pro-fast — 3x faster, 72% lower cost, $0.04/sec
  • seedance-1-0-lite-t2v — Lightweight, cost-effective, $0.02/sec
input
object
required
Input parameters for the generation.
webhookUrl
string
URL to receive a webhook when the task completes.
metadata
object
Custom key-value metadata to attach to the task.
{
  "success": true,
  "data": {
    "id": "task_abc123",
    "status": "pending",
    "type": "text-to-video",
    "provider": "seedance",
    "model": "seedance-1-5-pro",
    "created_at": "2026-01-15T10:00:00Z",
    "estimated_seconds": 40
  }
}