curl --request POST \
--url https://api.poyo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "wan2.7-text-to-video",
"callback_url": "https://your-domain.com/callback",
"input": {
"prompt": "A cinematic tracking shot of a glass greenhouse at sunrise, soft light, slow camera movement.",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5
}
}
'{
"code": 200,
"data": {
"task_id": "task-unified-1757165031-uyujaw3d",
"status": "not_started",
"created_time": "2023-11-07T05:31:56Z"
}
}Wan
Wan 2.7 Video Generation
Wan 2.7 Video API
POST
/
api
/
generate
/
submit
curl --request POST \
--url https://api.poyo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "wan2.7-text-to-video",
"callback_url": "https://your-domain.com/callback",
"input": {
"prompt": "A cinematic tracking shot of a glass greenhouse at sunrise, soft light, slow camera movement.",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5
}
}
'{
"code": 200,
"data": {
"task_id": "task-unified-1757165031-uyujaw3d",
"status": "not_started",
"created_time": "2023-11-07T05:31:56Z"
}
}- After submission, a
task_idis returned. Ifcallback_urlis provided, a POST request is sent when the task finishes or fails. - You can always retrieve the result through the unified Query Task Status endpoint.
Wan 2.7 Video Generation
Wan 2.7 includes four models for text, start/end frame, reference-guided generation, and video editing.Models
wan2.7-text-to-video— generates video from a required text promptwan2.7-image-to-video— generates video from one or two start/end frame imageswan2.7-reference-to-video— generates video from reference images or videoswan2.7-edit-video— edits an input video with an optional reference image
Key Features
- Duration: 5, 10, or 15 seconds for text generation; 2–15 seconds for image generation; 2–10 seconds for reference generation and video editing
- Resolution: 720p or 1080p
- Start/End Frames: Use one or two
image_urlswith the image model - Audio Input: Optional
audio_urlfor text and image models - Video Editing: Omit
durationor use0to detect the source video duration
Authorizations
All API endpoints require Bearer Token authentication. Create an API key at https://poyo.ai/dashboard/api-key and send it as Authorization: Bearer YOUR_API_KEY.
Body
application/json
