WAN 2.7 Spicy Image-to-Video API
Image-to-video with WAN 2.7 Spicy. Animate a starting image with optional driving audio. 720p or 1080p, 2–15 second clips. Integrate this model via REST with endpoint docs, parameters, and code examples.
Get API Key
Create auth keys for apps and agents
See Usage
Track requests, credits, and logs
Buy Credits
Top up prepaid API capacity
API Endpoint
/api/v1/models/wan-2.7-i2v-spicy/runTest This Model
Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.
LLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/wan-2.7-i2v-spicy.txtOpenAPI Spec
Swagger compatible
Import into Postman, Swagger UI, or generate client SDKs in any language.
/api/openapiParameters
Input parameters accepted by this model
| Parameter | Type | Default |
|---|---|---|
prompt | string | - |
image_url | url | - |
negative_prompt | string | - |
audio_url | url | - |
resolution | enum | 1080p |
duration | integer | 5 |
prompt_extend | boolean | false |
seed | integer | - |
Supported Aspect Ratios
Example Outputs
Real outputs generated by this model
she turns toward the camera with a confident smile, hair swaying gently, warm light shifting
he turns toward the camera with a confident look, shirt and hair moving in the evening breeze
she lowers her sunglasses and smiles at the camera, pool water rippling and sparkling behind her
the couple shares a soft laugh and a gentle embrace, warm sunset light flickering, hair in the breeze
she sways slightly to an unheard rhythm, hair moving, neon bokeh drifting behind her
soft camera drift, she adjusts the robe slightly and gazes at the camera, warm light glowing
subtle slow-motion, she shifts her pose and the gym light glints across her, calm confident breathing
playful sway, she runs a hand through her hair and laughs, retro charm
slow cinematic push-in, she tilts her head and her eyes follow the camera, neon light shimmering
a gentle ocean breeze moves her hair, she smiles and looks over her shoulder, waves rolling behind
subtle breathing motion, she shifts her weight and gazes at the camera, candlelight flickering
she turns her head slowly toward the camera and smiles, hair swaying gently, soft fabric movement
subtle drifting camera, soft fog rolling between the tall trees
slow cinematic dolly forward through the forest, sun rays shifting, mist drifting
gentle upward tilt, light filtering through the trees, calm ambient motion
slow pan across the seascape, waves cresting, soft drifting clouds
gentle camera push-in, waves washing over the sand, warm golden light
ocean waves roll in and out naturally, slow tracking shot along the shore
subtle camera drift, flowing water, calm atmospheric motion
slow pan across the cascade, mist rising, lush ferns swaying softly
the waterfall flows naturally, water cascading, gentle spray, slow push-in
slow upward tilt revealing the landscape, peaceful ambient movement
slow cinematic push-in, gentle mist drifting, soft ripples across the calm water
subtle drifting camera motion, calm reflections shimmering on the lake
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories.
Code Examples
Animate a still — copy and paste to get started
curl -X POST "https://pixeldojo.ai/api/v1/models/wan-2.7-i2v-spicy/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://...",
"prompt": "subject turns toward the camera, soft hair motion",
"duration": 5,
"resolution": "1080p"
}'Response Format
Submit Response (202 Accepted)
{
"jobId": "job_abc123...",
"status": "pending",
"statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
"creditCost": 20,
"creditsRemaining": 95,
"expiresAt": "2026-07-18T05:20:57Z"
}Completed Response
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"video": "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.mp4"
},
"creditCost": 20,
"expiresAt": "2026-07-18T05:20:57Z"
}