Skip to main content
POST

Authorizations

Authorization
string
header
required

All APIs require Bearer Token authentication

Add to request header:

Authorization: Bearer YOUR_API_KEY

Body

application/json
model
string
default:wan-2.7-text-to-video
required

wan-2.7-text-to-video: Text to Video

Example:

"wan-2.7-text-to-video"

prompt
string
required

Prompt describing the expected video content to generate

Maximum string length: 5000
Example:

"A lone surfer crossing bioluminescent waves at night"

aspect_ratio
enum<string>
default:16:9

Output video aspect ratio

Options: 16:9, 9:16, 1:1, 4:3, 3:4

Available options:
16:9,
9:16,
1:1,
4:3,
3:4
Example:

"16:9"

duration
integer
default:5

Output video duration in seconds, supports integer values from 2-15

Required range: 2 <= x <= 15
Example:

2

resolution
enum<string>
default:1080p

Output video resolution

Options: 720p, 1080p

Available options:
720p,
1080p
Example:

"720p"

audio_url
string | null

Public URL of the driving audio

**Notes: **

  • Supports WAV / MP3
  • Model generates background music automatically if not provided
Example:

"https://example.com/music.mp3"

negative_prompt
string | null

Negative prompt describing content to avoid

Maximum string length: 500
Example:

"blurry, jitter"

seed
integer | null

Random seed for reproducibility

Required range: 0 <= x <= 2147483647
Example:

123

enable_prompt_expansion
boolean | null

Whether to enable prompt expansion. Uses model default if not specified

Example:

true

enable_safety_checker
boolean | null

Whether to enable safety checker. Uses model default if not specified

Example:

true

Response

Task created successfully

created
integer

Task creation timestamp

Example:

1757165031

id
string

Task ID

Example:

"task-unified-1757165031-uyujaw3d"

model
string

Actual model name used

object
enum<string>

Specific task type

Available options:
video.generation.task
progress
integer

Task progress percentage (0-100)

Required range: 0 <= x <= 100
Example:

0

status
enum<string>

Task status

Available options:
pending,
processing,
completed,
failed
Example:

"pending"

task_info
object

Asynchronous task information

type
enum<string>

Task output type

Available options:
video
Example:

"video"