Skip to main content
POST
/
v1
/
videos
/
generations
PixVerse V6 Image to Video
curl --request POST \
  --url https://api.foxapi.cc/v1/videos/generations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "pixverse-v6-image-to-video",
  "prompt": "The astronaut turns around and starts walking toward the camera",
  "image_url": "https://example.com/astronaut.png",
  "resolution": "720p",
  "duration": 5,
  "generate_audio": false,
  "generate_multi_clip": true,
  "thinking_type": "enabled"
}
'
{
  "created": 1757165031,
  "id": "task-unified-1757165031-uyujaw3d",
  "model": "<string>",
  "object": "video.generation.task",
  "progress": 0,
  "status": "pending",
  "task_info": {
    "can_cancel": true,
    "estimated_time": 45
  },
  "type": "video"
}

Documentation Index

Fetch the complete documentation index at: https://docs.foxapi.cc/llms.txt

Use this file to discover all available pages before exploring further.

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:pixverse-v6-image-to-video
required

pixverse-v6-image-to-video: Image to video, generates video from first-frame image

Example:

"pixverse-v6-image-to-video"

prompt
string
required

Text prompt describing the desired video content

Notes:

  • Supports both Chinese and English
  • Recommended to clearly describe subject, action, scene, and camera language
Example:

"A cinematic dolly shot through a neon cyberpunk alley at night"

image_url
string
required

Public URL of the input image

Notes:

  • Used as the first frame for video generation
  • Must be a publicly accessible URL
Example:

"https://example.com/astronaut.png"

resolution
string
default:720p

Output video resolution

Options:

  • 360p
  • 540p
  • 720p — Default
  • 1080p
Example:

"720p"

duration
integer
default:5

Output video duration in seconds

Notes:

  • Supports 1 to 15 seconds
  • Defaults to 5 seconds
Example:

5

generate_audio
boolean
default:false

Whether to generate accompanying audio

Notes:

  • When enabled, can generate background sounds, sound effects, or dialogue
  • Disabled by default
Example:

false

negative_prompt
string | null

Negative prompt describing unwanted elements

Notes:

  • Multiple keywords can be separated by commas

Not required; omit this parameter unless needed.

Example:

"blurry, low quality, watermark"

style
string | null

Output style

Options:

  • anime
  • 3d_animation
  • clay
  • comic
  • cyberpunk

Not required; omit this parameter unless needed.

Example:

"cyberpunk"

seed
integer | null

Random seed

Notes:

  • Same parameters with the same seed can improve result reproducibility
  • Random if not specified

Not required; omit this parameter unless needed.

Example:

42

generate_multi_clip
boolean | null

Whether to enable multi-clip generation

Notes:

  • When enabled, generates multi-segment video with dynamic camera changes

Not required; omit this parameter unless needed.

Example:

true

thinking_type
string | null

Prompt optimization mode

Options:

  • enabled — Always optimize
  • disabled — No optimization
  • auto — Model decides

Not required; omit this parameter unless needed.

Example:

"enabled"

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"