Submit a request
Create an async generation task and poll the task endpoint for terminal status updates.
Veo 3.1 Quality is designed for quality-first video generation, making it suitable for highly expressive video creation.
Submit a task to MindVideo with your platform model slug. The response includes a request ID, task ID, normalized status, and estimated cost.
For production retries, send a unique Idempotency-Key per business request. Reusing the same key with the same payload returns the original task without charging again; reusing it with different input returns 409.
curl -X POST https://api.mindvideo.ai/api/v1/tasks \
-H "Authorization: Bearer mv_live_xxx" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: task_$(date +%s)" \
-d '{
"model": "veo3-1-quality",
"input": {
"prompt": "海边日落时一辆红色跑车驶过公路,镜头平稳推进,电影感",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 8
}
}'Every server-side request must include an API key in the Authorization header. Keys can be created, disabled, and deleted from the dashboard.
The platform maps runtime states into queued, processing, succeeded, failed, or cancelled so clients do not depend on model-specific fields.
Create an async generation task and poll the task endpoint for terminal status updates.
curl https://api.mindvideo.ai/api/v1/tasks/task_demo_model \
-H "Authorization: Bearer mv_live_xxx"curl https://api.mindvideo.ai/api/v1/tasks/task_demo_model/events \
-H "Authorization: Bearer mv_live_xxx"{
"request_id": "req_demo_model",
"task_id": "task_demo_model",
"status": "succeeded",
"cost_estimate": 0.675,
"cost_actual": 0.675,
"output": {
"videos": [
{
"url": "https://example.com/output/demo.mp4"
}
]
}
}Inputs can reference hosted files or compact data URIs depending on model constraints. Production apps should prefer stable hosted URLs.
{
"type": "object",
"required": [
"prompt"
],
"properties": {
"prompt": {
"type": "string",
"title": "Prompt",
"minLength": 1,
"description": "Text prompt for video generation.",
"x-playground": {
"rows": 6,
"widget": "textarea"
}
},
"duration": {
"enum": [
8
],
"type": "integer",
"title": "Duration",
"default": 8
},
"enable_gif": {
"type": "boolean",
"title": "GIF output",
"default": false
},
"image_urls": {
"type": "array",
"items": {
"type": "string"
},
"title": "Frame images",
"maxItems": 2,
"description": "Public image URLs only. Up to 2 images for frame mode.",
"x-playground": {
"accept": "image/*",
"widget": "file-upload",
"advanced": true,
"multiple": true,
"uploadKind": "image"
}
},
"resolution": {
"enum": [
"720p",
"1080p",
"4k"
],
"type": "string",
"title": "Resolution",
"default": "720p"
},
"aspect_ratio": {
"enum": [
"16:9",
"9:16"
],
"type": "string",
"title": "Aspect ratio",
"default": "16:9"
},
"generation_type": {
"enum": [
"frame"
],
"type": "string",
"title": "Generation type",
"description": "Veo 3.1 Quality does not support reference mode according to docs.",
"x-playground": {
"advanced": true
}
}
},
"additionalProperties": false
}{
"request_id": "req_demo_model",
"task_id": "task_demo_model",
"status": "succeeded",
"cost_estimate": 0.675,
"cost_actual": 0.675,
"output": {
"videos": [
{
"url": "https://example.com/output/demo.mp4"
}
]
}
}