Qubico
  1. Hunyuan Video
Qubico
  • Get Started
    • Overview
    • Quickstart
  • Endpoints
    • Flux
      • Flux with LoRA and Controlnet
      • Available LoRA and Controlnet
      • Flux API with Redux Variation, Fill, Inpaint and Outpaint
      • Create Task
        • Kontext
        • Text to Image
        • Image to Image
      • Get task
    • AI Hug
      • Get Task
      • Create Task
    • Faceswap
      • Multi Faceswap
      • Image Faceswap
      • Video Faceswap
      • Get Task
    • TTS
      • Zeroshot Text-to-Speech F5-TTS
      • Get Task
    • Trellis
      • Create Task
      • Get Task
    • WanX
      • Generate WanX Task with LoRA Using Qubico
      • Available LoRA Types for Wanx
      • Use Cases for Wanx LoRA
      • Use Cases for Wanx Control Camera
      • Create Task
      • Get Task
    • Skyreels
      • Create Task
      • Get Task
    • Framepack
      • Create Task
      • Get Task
    • Hunyuan Video
      • How to Make a Hunyuan API Call
      • Get Task
        GET
      • Generate Video
        POST
    • Mmaudio
      • Get Task
      • Generate Audio
    • DiffRhythm
      • Generate Audio
      • Get Task
    • Ace Step
      • Create Task
        • Text to Audio
        • Audio to Audio
        • Audio Edit
        • Audio Extend
      • Get Task
    • Tools
      • File Upload API
      • Video Upscale
      • Video Upscale-Get Task
      • Remove Background API
      • Remove Background-Get Task
      • Segment With Prompt API
      • Segment With Prompt API-Get Task
      • Image Upscale(Super Resolution) API
      • Image Upscale-Get Task
    • Account Management
      • Account Info
      • Task List Info
      • User Task History
  • Resources
    • Change Log
    • Output Storage
    • Unified API Schema
    • Webhook
    • Billings
  1. Hunyuan Video

Generate Video

POST
/api/v1/task

Hunyuan Video Generation API Documentation#

Overview#

Qubico's Hunyuan Video Generation service provides text-to-video capabilities with multiple models optimized for different use cases. The service supports both standard and fast video generation options, each with specific characteristics and pricing.
Hunyuan Video Model supports NSFW content.

Pricing#

ModelResolutionFPSStepsPrice (USD)
txt2video480x848 / 640x6408520$0.09
fast-txt2video480x848 / 640x640856$0.03
img2video-concat544x960 / 720x7208520$0.09
img2video-replace544x960 / 720x7208520$0.09
txt2video-lora480x848 / 640x6408520$0.09

Model Information#

Standard Text-to-Video (txt2video)#

Model Name: Qubico/hunyuan
Task Type: txt2video
Quality Focus: Higher quality with more processing steps (20 steps)
Best For: Projects requiring higher-quality output

Fast Text-to-Video (fast-txt2video)#

Model Name: Qubico/hunyuan
Task Type: fast-txt2video
Speed Focus: Faster generation with fewer steps (6 steps)
Best For: Quick iterations and previews

Image-to-Video Concat (img2video-concat)#

Model Name: Qubico/hunyuan
Task Type: img2video-concat
Focus: Generate video based on multiple concatenated images
Best For: Producing videos with more dynamic motion derived from input images

Image-to-Video Replace (img2video-replace)#

Model Name: Qubico/hunyuan
Task Type: img2video-replace
Focus: Replaces base image with new elements while preserving motion
Best For: Generating vid
Request Request Example
Shell
JavaScript
Java
Swift
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": ""
        }
    }
}'
Response Response Example
{
    "code": 200,
    "message": "string",
    "data": {
        "task_id": "736fde4d-9029-4915-8189-01353d6982cb",
        "status": "string",
        "output": {
            "video_url": "http://example.com"
        }
    }
}

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Successful response
Body

Modified at 2025-07-06 07:46:03
Previous
Get Task
Next
Get Task
Built with