RelayDanceRelayDance
HomeModelsPricingDocs
Get API Key

Docs / Model APIs / Overview

Model APIs: Overview

All RelayDance requests share one base URL, https://relaydance.com/v1, and one API key. The model field in the request body selects which model handles it.

#Endpoints

ModalityEndpoint
Video (submit)POST /v1/video/generations
Video (poll)GET /v1/video/generations/{task_id}
ImagePOST /v1/images/generations
File uploadPOST /v1/files
Model listGET /v1/models

#Listing available models

The authoritative model list is per key: call GET /v1/models with your key and you get exactly the IDs you can use. The public Models page shows the same catalog with pricing.

terminalbash
curl https://relaydance.com/v1/models \
  -H "Authorization: Bearer YOUR_API_KEY"

#Providers

Video and image models from leading AI labs:

Provider
ByteDance (Seedance)
HappyHorse
OpenAI (gpt-image-2)

#Video models

Model IDFamilyNotes
doubao-seedance-2-0-1080pSeedance 2.0Flagship quality, 1080p output
doubao-seedance-2-0-720pSeedance 2.0720p output
doubao-seedance-2-0-480pSeedance 2.0480p output
doubao-seedance-2-0-4kSeedance 2.0Native 4K output
doubao-seedance-2-0-fast-260128Seedance 2.0Fast tier, faster generation
doubao-seedance-2-0-mini-260615Seedance 2.0Mini tier, lightweight
seedance-1-5-pro-with-audioSeedance 1.5Generated audio included
seedance-1-5-pro-no-audioSeedance 1.5Silent output
happyhorse-1.0-t2vHappyHorseText-to-video
happyhorse-1.0-i2vHappyHorseImage-to-video
happyhorse-1.0-r2vHappyHorseReference-to-video
happyhorse-1.0-video-editHappyHorseVideo editing

All video models use the asynchronous task API. See Video Generation.

Tasks start immediately (no queue), no BytePlus account or KYC is required, and face and portrait generation is supported. Some special SKUs are available here that are not on the official platform.

#Super-resolution

Upscale a finished clip with the super-resolution models. seedance-upscale-720p (480p to 720p) is live now. seedance-upscale-1080p, seedance-upscale-2k and seedance-upscale-4k are in the catalog and coming soon.

#Image models

Model IDFamilyNotes
gpt-image-2ImageText-to-image; image output is free, you pay only for input

#Authentication

Every endpoint uses the same bearer token scheme:

HeaderValue
AuthorizationBearer YOUR_API_KEY
Content-Typeapplication/json
Get your API key from the API Keys page.

#Synchronous vs asynchronous

Image requests return their result in the response. Video generation is asynchronous: submitting returns a task_id, and you poll GET /v1/video/generations/{task_id} or receive a webhook via metadata.callback_url.