Video Generation
MuAPI provides access to the world's leading video generation models through a single unified API.
Supported Models
| Model | Type | Description |
|---|---|---|
veo3 | T2V / I2V | Google Veo 3 — photorealistic, cinematic |
veo3-fast | T2V / I2V | Faster Veo 3 variant |
kling-master | T2V / I2V | Kling Master — highest quality |
kling-pro | T2V / I2V | Kling Pro |
kling-std | T2V / I2V | Kling Standard |
wan2.1 / wan2.2 | T2V / I2V | Wan video models |
seedance-pro / seedance-lite | T2V / I2V | Seedance video |
hunyuan | T2V / I2V | Hunyuan video |
runway | T2V / I2V | Runway Gen video |
pixverse | T2V / I2V | PixVerse |
vidu | T2V / I2V | Vidu |
minimax-hailuo-02-std / minimax-hailuo-02-pro | T2V / I2V | MiniMax Hailuo |
Text-to-Video Example
POST /api/v1/kling-master
x-api-key: YOUR_API_KEY
Content-Type: application/json
{
"prompt": "A cinematic drone shot over a misty mountain range at dawn",
"duration": 5
}
Response:
{ "request_id": "abc123" }
Image-to-Video Example
POST /api/v1/kling-master
x-api-key: YOUR_API_KEY
{
"prompt": "Camera slowly pulls back to reveal the full landscape",
"image_url": "https://example.com/image.jpg",
"duration": 5
}
Polling for Results
GET /api/v1/predictions/abc123/result
x-api-key: YOUR_API_KEY
Poll until status is completed:
{
"status": "completed",
"outputs": ["https://cdn.muapi.ai/...output.mp4"]
}
Status values: queued → processing → completed / failed
See Also
- Text-to-Video — detailed T2V guide
- Kling — Kling model specifics
- Models — full model catalog
- Quick Start