Video Generation

MuAPI provides access to the world's leading video generation models through a single unified API.

Supported Models

ModelTypeDescription
veo3T2V / I2VGoogle Veo 3 — photorealistic, cinematic
veo3-fastT2V / I2VFaster Veo 3 variant
kling-masterT2V / I2VKling Master — highest quality
kling-proT2V / I2VKling Pro
kling-stdT2V / I2VKling Standard
wan2.1 / wan2.2T2V / I2VWan video models
seedance-pro / seedance-liteT2V / I2VSeedance video
hunyuanT2V / I2VHunyuan video
runwayT2V / I2VRunway Gen video
pixverseT2V / I2VPixVerse
viduT2V / I2VVidu
minimax-hailuo-02-std / minimax-hailuo-02-proT2V / I2VMiniMax 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: queuedprocessingcompleted / failed

See Also