Seedance2

Seedance 2.0 API Quickstart

Minimal Seedance 2.0 API flow on Reelbyte: authenticate, generate, query task status, and read results.

Seedance 2.0 API Quickstart

This guide shows the fastest path to call Seedance 2.0 through Reelbyte APIs.

1) Get API Key

  1. Sign in to Reelbyte.
  2. Go to Settings -> API Keys.
  3. Create and copy your key.

2) Base URL

https://reelbyte.video

3) Create a Video Task

curl -X POST "https://reelbyte.video/api/v1/ai/generate" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "mediaType": "video",
    "provider": "replicate",
    "model": "bytedance/seedance-2.0-pro",
    "scene": "text-to-video",
    "prompt": "A cinematic product hero shot with smooth camera motion",
    "options": {
      "duration": 5,
      "aspect_ratio": "16:9",
      "generate_audio": true
    }
  }'

4) Query Task Status

curl -X POST "https://reelbyte.video/api/v1/ai/query" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "taskId": "<task-id>" }'

5) Typical Status Flow

  • pending
  • processing
  • success or failed

Notes

  • Access can be limited during beta rollout.
  • If Seedance 2.0 is not enabled for your account, join the waitlist at /seedance2.
  • Web and API usage share the same credits pool.

Continue with pricing details: /docs/seedance2/pricing-errors.