Hailuo
MiniMax Hailuo video generation with Pro/Standard variants
المزايا
- Text-to-video generation
- Image-to-video generation
- Standard and Pro variants
- Optional duration/resolution controls
التسعير
| Variant | Credits |
|---|---|
| text-to-video-pro | 65 (~$0.72) |
| image-to-video-pro | 65 (~$0.72) |
| text-to-video-standard (6s) | 35 (~$0.39) |
| text-to-video-standard (10s) | 55 (~$0.61) |
| image-to-video-standard (6s, 512P) | 15 (~$0.17) |
| image-to-video-standard (6s, 768P) | 35 (~$0.39) |
| image-to-video-standard (10s, 512P) | 25 (~$0.28) |
| image-to-video-standard (10s, 768P) | 55 (~$0.61) |
نقطة النهاية
POST
/api/v1/videos/generateالمُعاملات
| معامل | النوع | مطلوب | وصف |
|---|---|---|---|
| model | string | مطلوب | Must be "hailuo" |
| type | string | اختياري | "text-to-video" or "image-to-video" (default: text-to-video) |
| prompt | string | مطلوب | Text prompt (3-5000 chars) |
| hailuo_model | string | اختياري | "hailuo/02-text-to-video-pro", "hailuo/02-image-to-video-pro", "hailuo/02-text-to-video-standard", or "hailuo/02-image-to-video-standard" |
| image_urls | string[] | اختياري | Required for image-to-video |
| input_image | string | اختياري | Deprecated. Alias for image_urls[0] |
| duration | string | اختياري | "6" or "10" (Standard variants only) |
| resolution | string | اختياري | "512P" or "768P" (image-to-video-standard only) |
مثال للطلب
{
"model": "hailuo",
"type": "image-to-video",
"prompt": "A close-up of waves rolling onto a rocky beach",
"hailuo_model": "hailuo/02-image-to-video-standard",
"image_urls": ["https://tempfile.aiquickdraw.com/workers/nano/image_1772780968156_ygk0zm.png"],
"duration": "6",
"resolution": "768P"
}مثال على الرد
{
"success": true,
"data": {
"task_id": "task_hailuo123",
"credits_used": 35,
"remaining_credits": 465,
"model": "hailuo/02-image-to-video-standard"
}
}أمثلة التعليمات البرمجية
curl -X POST https://gateway.bananapro.site/api/v1/videos/generate \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{
"model": "hailuo",
"type": "image-to-video",
"prompt": "A close-up of waves rolling onto a rocky beach",
"hailuo_model": "hailuo/02-image-to-video-standard",
"image_urls": ["https://tempfile.aiquickdraw.com/workers/nano/image_1772780968156_ygk0zm.png"],
"duration": "6",
"resolution": "768P"
}'