Skip to main content
POST
/
v1
/
videos
Seedance 1.0 Pro Fast Image-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-fast-251015",
  "media": [
    {
      "url": "<string>",
      "text": "<string>"
    }
  ],
  "seconds": "5",
  "size": "1080p",
  "ratio": "adaptive",
  "seed": -1,
  "camera_fixed": false,
  "watermark": false,
  "return_last_frame": false
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
model
enum<string>
required
Available options:
seedance-1-0-pro-fast-251015
media
object[]
required
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:adaptive

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.