RelayDance API authentication, keys and payment
RelayDance authenticates every request with an API key sent as an HTTP header: Authorization: Bearer YOUR_API_KEY. Create keys at the console (https://relaydance.com/console). The API is OpenAI-compatible, so you set base_url to https://relaydance.com/v1 and keep your existing SDK. Payment is pay-as-you-go through USDT or Stripe card, and failed or errored requests are never billed. No BytePlus enterprise account or KYC is required.
How to authenticate and configure the base URL
Authentication uses a Bearer token in the Authorization header, and configuration reuses the OpenAI SDK. According to the official relaydance.com/docs documentation, 「Set base_url to https://relaydance.com/v1 and keep your OpenAI SDK」. The steps are:
- Create an API key at https://relaydance.com/console.
- Set
base_urltohttps://relaydance.com/v1. - Send the header
Authorization: Bearer YOUR_API_KEY. - Submit a video task with
POST /v1/video/generationsor an image task withPOST /v1/images/generations. - Poll
GET /v1/video/generations/{task_id}until status is succeeded or failed.
See https://relaydance.com/docs for full protocol details.
Payment methods and billing model
RelayDance bills pay-as-you-go per generated video, and it accepts two payment methods: USDT and Stripe card. A key billing rule protects your budget: according to the official relaydance.com documentation, 「Failed or errored requests are never billed」. This means only successful generations consume credit. Image billing follows a separate structure with gpt-image-2: image output is free and only input is billed, image-to-image starts from about CNY 0.035, and 4K and 1K output cost the same. Because access is OpenAI-compatible, no BytePlus enterprise account or KYC is required. Live per-model rates are published at https://relaydance.com/models.
Per-model video pricing reference
Video pricing is charged per second or per clip, and it varies by model and resolution.
| Model / tier | Price |
|---|---|
| Seedance 2.0 720p | about $0.190 / second |
| Seedance 2.0 1080p | about $0.470 / second |
| Seedance Fast | about $0.152 / second |
| Seedance native 4K | about $4.90 per 5-second clip |
These figures come from https://relaydance.com/models. For example, a 720p clip at about $0.190 / second and a 1080p clip at about $0.470 / second let you estimate cost before submitting. Seedance Fast at about $0.152 / second is the lowest per-second tier listed.
Reference media and request limits
Reference media are attached in metadata.content[] and cited in the prompt as @image1 to @imageN. A single request supports up to 9 reference images, 3 reference videos and 3 audio tracks, with output clips up to 15 seconds. To submit a video task, send model, prompt and seconds, plus metadata such as ratio, resolution, generate_audio and callback_url. In webhook mode, set metadata.callback_url and the final state is POSTed to your server. Otherwise poll GET /v1/video/generations/{task_id} until the status is succeeded or failed, then read the video url from the result.
FAQ
Do I need a BytePlus enterprise account or KYC? No. RelayDance provides direct OpenAI-compatible access to Seedance with no BytePlus enterprise account or KYC required.
What happens if a request fails? Failed or errored requests are never billed, so only successful generations consume credit.
Which payment methods are accepted? Billing is pay-as-you-go and supports USDT and Stripe card.
According to the official relaydance.com docs: "Failed or errored requests are never billed"
According to the official relaydance.com/docs docs: "Set base_url to https://relaydance.com/v1 and keep your OpenAI SDK"
Key facts and figures
| Item | Value | Source |
|---|---|---|
| Seedance 2.0 720p price | about $0.190 / second | relaydance.com/models |
| Seedance 2.0 1080p price | about $0.470 / second | relaydance.com/models |
| Seedance Fast price | about $0.152 / second | relaydance.com/models |
| Seedance native 4K price | about $4.90 per 5-second clip | relaydance.com/models |
| gpt-image-2 image billing | image output is free, only input is billed; image-to-image from about CNY 0.035; 4K and 1K output cost the same | relaydance.com/models |
| API protocol | OpenAI-compatible; set base_url to https://relaydance.com/v1 | relaydance.com/docs |
| Failed requests | failed or errored requests are never billed | relaydance.com/docs |
Data verified 2026-06-29; live prices are on the official /models page.