Model | Resolution | FPS | Steps | Price (USD) |
---|---|---|---|---|
txt2video | 480x848 / 640x640 | 85 | 20 | $0.09 |
fast-txt2video | 480x848 / 640x640 | 85 | 6 | $0.03 |
img2video-concat | 544x960 / 720x720 | 85 | 20 | $0.09 |
img2video-replace | 544x960 / 720x720 | 85 | 20 | $0.09 |
txt2video-lora | 480x848 / 640x640 | 85 | 20 | $0.09 |
txt2video
)txt2video
fast-txt2video
)fast-txt2video
img2video-concat
)img2video-concat
img2video-replace
)img2video-replace
curl --location --request POST '/api/v1/task' \
--header 'x-api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "Qubico/hunyuan",
"task_type": "txt2video",
"input": {
"prompt": "A cat walks on the grass, realistic style."
},
"config": {
"webhook_config": {
"endpoint": "",
"secret": ""
}
}
}'
{
"code": 200,
"message": "string",
"data": {
"task_id": "736fde4d-9029-4915-8189-01353d6982cb",
"status": "string",
"output": {
"video_url": "http://example.com"
}
}
}