Models · Video
Wan 3.0 API
Was this page helpful?
Wan 3.0 is good for generating short video shots when you need its listed duration, resolution, and framing options.
Pricing
Default example: 5-second video at 1080p costs 99 credits, or $0.78 at the shared USD reference.
| Resolution | Unit | Credits | USD |
|---|---|---|---|
| 480p | Per second | 19.8 cr | $0.16 |
| 720p | Per second | 19.8 cr | $0.16 |
| 1080p | Per second | 19.8 cr | $0.16 |
Accepted inputs
- Kind
- video
- Durations
- 2–30 seconds
- Resolutions
- 480p, 720p, 1080p
- Aspect ratios
- adaptive, 16:9, 9:16, 1:1, 4:3, 3:4
- Reference inputs
- Images: 10. Videos: 5 (up to 15s and 62914560 bytes). Audio: 5 (up to 52428800 bytes); needs an image or video.
- Defaults
- 5s · 1080p · adaptive
Sample request
The request uses the current default settings for this model and the public GenerateMediaRequest schema.
curl -X POST "https://reviral.ai/api/v1/generate-media" \
-H "Authorization: Bearer $REVIRAL_API_KEY" \
-H "Idempotency-Key: first-generation" \
-H "Content-Type: application/json" \
--data '{"model":"wan-3.0","prompt":"A slow camera move across a quiet lake at sunrise","durationSec":5,"resolution":"1080p","aspectRatio":"adaptive","maxCredits":99}'Response and output
Accepted job
{
"data": {
"jobId": "550e8400-e29b-41d4-a716-446655440000",
"kind": "video",
"model": "wan-3.0",
"creditsCharged": 99,
"status": "queued",
"statusUrl": "/api/v1/jobs/550e8400-e29b-41d4-a716-446655440000"
}
}Ready job
{
"data": {
"jobId": "550e8400-e29b-41d4-a716-446655440000",
"kind": "video",
"model": "wan-3.0",
"creditsCharged": 99,
"status": "ready",
"statusUrl": "/api/v1/jobs/550e8400-e29b-41d4-a716-446655440000",
"outputUrl": "https://reviral.ai/signed-output",
"durationSec": 5
}
}Error cases
404 model_not_available: the ID is no longer in the live catalog.409 price_changed: the current cost differs frommaxCredits.422 validation_error: duration, resolution, aspect ratio, size, or count is not accepted.429 rate_limit_exceeded: wait forRetry-Afterbefore retrying.
Frequently asked questions
- How much does the Wan 3.0 API cost?
- The default 5-second video at 1080p costs 99 credits, about $0.78 at the shared USD reference. Read the live models endpoint before submitting.
- Which inputs does Wan 3.0 accept?
- It accepts the listed generation settings plus up to 10 image, 5 video, and 5 audio references. Zero means that reference kind is unavailable.
- How do I retrieve Wan 3.0 output?
- Poll the returned status URL until the job is ready, then download the signed output URL or URLs before they expire.