Skip to main content
POST
/
api
/
v1
/
vidu
/
text-to-video
Text to Video
curl --request POST \
  --url https://api.modelhunter.ai/api/v1/vidu/text-to-video \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "input": {
    "prompt": "<string>",
    "duration": 123,
    "aspect_ratio": "<string>",
    "resolution": "<string>",
    "style": "<string>",
    "audio": true,
    "seed": 123,
    "off_peak": true
  },
  "webhookUrl": "<string>",
  "metadata": {}
}
'
{
  "success": true,
  "data": {
    "id": "task_abc123",
    "status": "pending",
    "type": "text-to-video",
    "provider": "vidu",
    "model": "viduq3-turbo",
    "created_at": "2025-01-15T10:00:00Z",
    "estimated_seconds": 30
  }
}
Check out Vidu pricing — enable off_peak: true for 50% off.

Body Parameters

model
string
required
Vidu model to use. Options:
  • viduq3-pro — Latest flagship, supports audio sync (1–16s), $0.07–$0.16/sec
  • viduq3-turbo — Fast Q3, supports audio sync (1–16s), $0.04–$0.08/sec
Pricing varies by resolution. Enable off_peak: true for 50% off.
input
object
required
Provider-specific parameters for the generation request.
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": "vidu",
    "model": "viduq3-turbo",
    "created_at": "2025-01-15T10:00:00Z",
    "estimated_seconds": 30
  }
}