Skip to main content
POST
/
v1
/
ai
/
video
/
seedance-1-5-pro-480p
Seedance 1.5 Pro 480p - Create video from text or image
curl --request POST \
  --url https://api.freepik.com/v1/ai/video/seedance-1-5-pro-480p \
  --header 'Content-Type: application/json' \
  --header 'x-freepik-api-key: <api-key>' \
  --data @- <<EOF
{
  "prompt": "A person saying 'Hello world' while waving at the camera",
  "webhook_url": "<string>",
  "image": "aSDinaTvuI8gbWludGxpZnk=",
  "duration": 5,
  "generate_audio": true,
  "camera_fixed": false,
  "aspect_ratio": "widescreen_16_9",
  "seed": -1
}
EOF
{
  "data": {
    "generated": [],
    "task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
    "status": "CREATED"
  }
}

Authorizations

x-freepik-api-key
string
header
required

Your Freepik API key. Required for authentication. Learn how to obtain an API key

Body

application/json
prompt
string
required

The text content used for the video generation including dialogue, sounds, and scene description.

Maximum string length: 2000
Example:

"A person saying 'Hello world' while waving at the camera"

webhook_url
string<uri>

Webhook URL to notify the user when the task is completed

image
string<byte>

Optional image to use as first frame for image-to-video generation. Supported formats: URL of the image or base64 encoding.

duration
integer
default:5

Video duration in seconds (4-12)

Required range: 4 <= x <= 12
generate_audio
boolean
default:true

Whether to generate synchronized audio (dialogue, foley, music) from the prompt

camera_fixed
boolean
default:false

Whether the camera position should be fixed (tripod shot)

aspect_ratio
enum<string>
default:widescreen_16_9

Video aspect ratio

Available options:
film_horizontal_21_9,
widescreen_16_9,
classic_4_3,
square_1_1,
traditional_3_4,
social_story_9_16,
film_vertical_9_21
seed
integer
default:-1

Random seed for video generation. Use -1 for random seed.

Required range: -1 <= x <= 4294967295

Response

OK - The task exists and the status is returned

data
object
required
Example:
{
  "task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
  "status": "CREATED",
  "generated": [
    "https://openapi-generator.tech",
    "https://openapi-generator.tech"
  ]
}