Skip to main content
POST
/
v1
/
videos
Seedance 1.0 Pro Text-to-Video
curl --request POST \
  --url https://api.powertokens.ai/v1/videos \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "seedance-1-0-pro-250528",
  "media": [
    {
      "type": "text",
      "text": "A small cat running"
    }
  ]
}
'

Authorizations

Authorization
string
header
required

Pass Authorization: Bearer <token> in the request header.

Body

application/json
model
enum<string>
required

Video generation model name. Fixed to seedance-1-0-pro-250528.

Available options:
seedance-1-0-pro-250528
media
object[]
required

Multimodal input array. Text-to-video must contain an input with type: "text".

seconds
enum<string>
default:5

Video generation duration (seconds) in string format. Supports "2" to "12".

Available options:
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12
Example:

"5"

size
enum<string>
default:1080p

Video output resolution specification. Defaults to 1080p.

Available options:
480p,
720p,
1080p
ratio
enum<string>
default:16:9

Video aspect ratio. Text-to-Video defaults to 16:9, Image-to-Video defaults to adaptive.

Available options:
16:9,
4:3,
1:1,
3:4,
9:16,
21:9,
adaptive
seed
integer
default:-1

Random seed, range [-1, 4294967295].

Required range: -1 <= x <= 4294967295
camera_fixed
boolean
default:false

Whether to fix the camera.

watermark
boolean
default:false

Whether to add a watermark.

return_last_frame
boolean
default:false

Whether to return the last frame image.

Response

200

Submission successful, returns a video task object.