Model | Task Type | Description | Price |
---|---|---|---|
Qubico/Wanx txt2video-1.3b | Text-to-Video | Lightweight text-to-video generation model | $0.12 per generation |
Qubico/Wanx txt2video-14b | Text-to-Video | Advanced text-to-video generation model | $0.28 per generation |
Qubico/Wanx txt2video-14b-lora | Text-to-Video with LoRA | Generate video based on specific LoRA type and text prompt | $0.28 per generation |
Qubico/Wanx img2video-14b | Image-to-Video | Image-to-video transformation model | $0.28 per generation |
Qubico/Wanx img2video-14b-lora | Image-to-Video with LoRA | Generate video based on specific LoRA type and image | $0.28 per generation |
Qubico/Wanx img2video-14b-keyframe | Image-to-Video Keyframe | Generate video from first and last frames | $0.28 per generation |
Qubico/Wanx img2video-14b-control-camera | Image-to-Video Control Camera | Generate video with camera motion control | $0.28 per generation |
img2video-14b
model, supported image formats include URL links or base64 encoded image data.img2video-14b-control-camera
model, this parameter determines how the camera moves in the generated video. Only one camera motion type is supported per generation, with static as the default.img2video-14b-control-camera
model, this sets how fast the camera moves, with 0.2 as the default value.curl --location --request POST '/api/v1/task' \
--header 'x-api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "Qubico/wanx",
"task_type": "txt2video-14b-lora",
"input": {
"prompt": "A girl with a playful smile leans forward on the ferry railing, holding onto her sunhat as the wind threatens to carry it away. She looks directly at the camera with bright, excited eyes, her laughter almost visible in her expression. The sun reflects off the sparkling water, and behind her, the coastline of a charming island town approaches. The camera slowly zooms out, capturing the anticipation of arrival.",
"negative_prompt": "Overexposure, static, blurred details, subtitles, still, overall gray, worst quality, low quality, JPEG compression residue, ugly, mutilated, redundant fingers, poorly painted hands, poorly painted faces, deformed, disfigured, deformed limbs, fused fingers, three legs",
"lora_settings": [
{
"lora_type": "ghibli"
}
]
}
}'
{
"task_id": "string",
"status": "pending",
"created_at": "2019-08-24T14:15:22Z"
}