Wan25/26
Modèles de génération vidéo Wan pour une production de haute qualité
Fonctionnalités
- Génération de texte vers vidéo
- Durées multiples
- Prise en charge du 720p et du 1080p
- Expansion facultative de l'invite
Tarification
Wan 2.5
| Duration | 720p | 1080p |
|---|---|---|
| 5 sec | 60 (~$0.67) | 100 (~$1.11) |
| 10 sec | 120 (~$1.33) | 200 (~$2.22) |
Wan 2.6
| Duration | 720p | 1080p |
|---|---|---|
| 5 sec | 80 (~$0.89) | 110 (~$1.22) |
| 10 sec | 160 (~$1.78) | 220 (~$2.44) |
| 15 sec | 240 (~$2.67) | 330 (~$3.67) |
Point de terminaison
POST
/api/v1/videos/generateParamètres
| Paramètre | Type | Obligatoire | Description |
|---|---|---|---|
| model | string | Obligatoire | "wan25" or "wan26" |
| type | string | Facultatif | "text-to-video", "image-to-video", or "video-to-video" (wan26 only; default: text-to-video) |
| prompt | string | Obligatoire | Text description of the video |
| image_urls | string[] | Facultatif | Input image URLs for image-to-video |
| image_url | string | Facultatif | Legacy single image URL for image-to-video |
| video_url | string | Facultatif | Input video URL for wan26 video-to-video |
| input_image | string | Facultatif | Deprecated. Alias for image_urls[0] |
| duration | string | Facultatif | "5" or "10" (wan25); "5", "10", or "15" (wan26) |
| resolution | string | Facultatif | "720p" or "1080p" |
| negative_prompt | string | Facultatif | What to avoid |
| enable_prompt_expansion | boolean | Facultatif | Auto-expand prompt |
| seed | number | Facultatif | Random seed for reproducibility |
Exemple de Demande
{
"model": "wan25",
"prompt": "A butterfly landing on a flower in slow motion",
"duration": "5",
"resolution": "1080p"
}Exemple de réponse
{
"success": true,
"data": {
"task_id": "task_wan123",
"credits_used": 100,
"remaining_credits": 400,
"model": "wan25"
}
}Exemples de Code
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": "wan25",
"prompt": "A butterfly landing on a flower in slow motion",
"duration": "5",
"resolution": "1080p"
}'