跳转到主要内容
POST
/
api
/
open-api
/
v1
/
veo
/
videos
Create VEO Video Task
curl --request POST \
  --url https://www.jimiai.com/api/open-api/v1/veo/videos \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "prompt": "<string>",
  "duration": 123,
  "orientation": "landscape",
  "images": [
    "<string>"
  ]
}
'
{
  "task_id": "<string>",
  "status": "<string>",
  "model": "<string>",
  "created_at": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.jimmyai.cn/llms.txt

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

授权

Authorization
string
header
必填

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

请求体

application/json
model
string
必填

Model name (e.g., sora2-gz-stable, sora2-gz-sp)

prompt
string
必填

Text prompt for video generation

duration
integer
必填

Duration in seconds

orientation
enum<string>

Video orientation

可用选项:
landscape,
portrait
images
string[]

Reference image URLs

响应

200 - application/json

Task created successfully

task_id
string
status
string
model
string
created_at
integer<int64>