Skip to content
View seedance25api's full-sized avatar

Block or report seedance25api

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
seedance25api/README.md

Hi there πŸ‘‹

Seedance 2.5 API

Text, photo, video & audio in β€” short video out.

ByteDance's next-generation Seedance 2.5 video model, coming to reAPI as an async, OpenAI-style endpoint β€” same request shape the Seedance 2.0 API runs on today.

Seedance 2.5 β†’ Β· Seedance 2.0 (live) Β· All models Β· Docs


What the Seedance API does

  • Every input mode in one endpoint β€” text-to-video, image-to-video, first/last frame, reference video, and reference audio.
  • Real people, lip-synced β€” the face variants combine a reference video with audio to animate real people speaking: voiceovers, explainers, character animation in one call.
  • Continuous chaining β€” set return_last_frame and feed the returned frame URL into the next call to chain clips without re-prompting.
  • Per-second credit pricing β€” 1 credit = $0.001. Seedance 2.0 starts at $0.041/s; failed jobs are refunded automatically.

Quick start (runs today on Seedance 2.0)

Seedance 2.5 will ship on the same request shape, so code written against Seedance 2.0 migrates by swapping the model id.

# 1. Submit a video task
curl https://reapi.ai/api/v1/videos/generations \
  -H "Authorization: Bearer $REAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "doubao-seedance-2.0",
    "prompt": "A barista pours latte art in slow motion, warm cafe lighting, cinematic 35mm look",
    "duration": 5,
    "resolution": "720p"
  }'
# β†’ {"id": "task_..."}

# 2. Poll until status is "completed", then read output.video_urls
curl https://reapi.ai/api/v1/tasks/task_xxx \
  -H "Authorization: Bearer $REAPI_API_KEY"

Get a key from the reAPI dashboard β€” free credits on signup, no card required.

Model variants

Model id What it's for
doubao-seedance-2.0 Standard quality, up to 1080p
doubao-seedance-2.0-fast Faster, cheaper renders
doubao-seedance-2.0-face Real-person / lip-sync inputs, up to 4K
doubao-seedance-2.0-fast-face Fast tier of the face variant

All four share one request shape: 4–15s clips, 480p–4K, prompts up to 4,000 characters, optional generated audio, aspect ratios from 21:9 to 9:16 plus adaptive. Try them in the playground without writing code.

Seedance 2.5 status

The Seedance 2.5 page is live with positioning, pricing model, and use cases; the API itself is coming soon. Sign up now and your free credits will cover your first Seedance 2.5 generations at launch.


This is a developer resource for the Seedance API on reAPI, an independent API gateway. Not affiliated with, endorsed by, or sponsored by ByteDance. Model names belong to their respective owners.

Popular repositories Loading

  1. awesome-seedance-2.5-prompt awesome-seedance-2.5-prompt Public

    awesome seedance 2.5 prompt

    22 4

  2. seedance25api seedance25api Public

    seedance 2.5 api

  3. awesome-Seedance-2.0-prompt awesome-Seedance-2.0-prompt Public

    awesome seedance 2.0 prompt

  4. seedance-2-0 seedance-2-0 Public

    Forked from reAPIAI/seedance-2-0

    seedance-2-0

    Python