SEEDANCE 2.5 IS NOW LIVE!

GENERATE YOUR VIDEOS WITH UNLIMITED SEEDANCE 2.5 TODAY.

NO EXTRA SUBSCRIPTION
REVIRAL
Get API key
Browse API docs

Models · Video

Seedance 2.5 1080P API

Was this page helpful?

Seedance 2.5 1080P 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 267 credits, or $5.21 at the shared USD reference.

ResolutionUnitCreditsUSD
1080pPer second53.4 cr$1.04

Accepted inputs

Kind
video
Durations
4–30 seconds
Resolutions
1080p
Aspect ratios
16:9, 9:16, 1:1, 4:3, 3:4, 21:9
Defaults
5s · 1080p · 16:9

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-video" \
  -H "Content-Type: application/json" \
  --data '{"model":"seedance-2.5-1080p-fast","prompt":"A slow camera move across a quiet lake at sunrise","durationSec":5,"resolution":"1080p","aspectRatio":"16:9","maxCredits":267}'

Response and output

Accepted job
{
  "data": {
    "jobId": "550e8400-e29b-41d4-a716-446655440000",
    "kind": "video",
    "model": "seedance-2.5-1080p-fast",
    "creditsCharged": 267,
    "status": "queued",
    "statusUrl": "/api/v1/jobs/550e8400-e29b-41d4-a716-446655440000"
  }
}
Ready job
{
  "data": {
    "jobId": "550e8400-e29b-41d4-a716-446655440000",
    "kind": "video",
    "model": "seedance-2.5-1080p-fast",
    "creditsCharged": 267,
    "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 from maxCredits.
  • 422 validation_error: duration, resolution, aspect ratio, size, or count is not accepted.
  • 429 rate_limit_exceeded: wait for Retry-After before retrying.

Frequently asked questions

How much does the Seedance 2.5 1080P API cost?
The default 5-second video at 1080p costs 267 credits, about $5.21 at the shared USD reference. Read the live models endpoint before submitting.
Which inputs does Seedance 2.5 1080P accept?
It accepts a prompt plus the listed durations, resolutions, and aspect ratios. Reference inputs are not available through this v1 endpoint.
How do I retrieve Seedance 2.5 1080P output?
Poll the returned status URL until the job is ready, then download the signed output URL or URLs before they expire.