Skip to main content
POST
/
video
/
quote
/api/v1/video/quote
curl --request POST \
  --url https://api.venice.ai/api/v1/video/quote \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "wan-2.5-preview-image-to-video",
  "duration": "10s",
  "aspect_ratio": "16:9",
  "resolution": "720p",
  "audio": true
}
'
{
  "quote": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
model
string
required

The model to use for video generation.

Example:

"wan-2.5-preview-image-to-video"

duration
enum<string>
required

The duration of the video to generate.

Available options:
5s,
10s
Example:

"10s"

aspect_ratio
any | null

The aspect ratio of the video to generate.

Example:

"16:9"

resolution
enum<string>
default:720p

The resolution of the video to generate.

Available options:
1080p,
720p,
480p
Example:

"720p"

audio
any | null

For models which support audio generation and configuration, indicates if audio should be generated. Defaults to true.

Example:

true

Response

Video generation price quote

quote
number
required