Skip to main content
Back to API Platform

WAN 2.6 Standard API

Higher quality, 720p/1080p support. Integrate this model via REST with endpoint docs, parameters, and code examples.

Video Generation
Img2Vid
Audio
Content moderation disabled
Credit Cost
2.5 credits/sec
Type
Video

API Endpoint

POST
/api/v1/models/wan-2.6-standard/run

Test 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.

Parameters

Input parameters accepted by this model

ParameterTypeDefault
prompt
string
-
negative_prompt
string
-
image_url
url
-
mode
enum
text-to-video
resolution
enum
720p
duration
integer
5
enable_prompt_expansion
boolean
false
seed
integer
-

Supported Aspect Ratios

16:9
9:16
1:1

Example Outputs

Real outputs generated by this model

View Details

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."

0 credits
0
View Details

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."

25 credits
72.0s

Code Examples

Copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/wan-2.6-standard/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "mode": "image-to-video",
    "image_url": "https://...",
    "prompt": "Slow zoom in",
    "duration": 5
  }'

Response Format

Submit Response (202 Accepted)

json
{
  "jobId": "job_abc123...",
  "status": "pending",
  "statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
  "creditCost": 13,
  "creditsRemaining": 95,
  "expiresAt": "2026-07-28T05:07:25Z"
}

Completed Response

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "video": "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.mp4"
  },
  "creditCost": 13,
  "expiresAt": "2026-07-28T05:07:25Z"
}