创建视频
curl --request POST \
--url https://octopusx.ai/v1/video/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"images": [
{}
],
"model": "<string>",
"orientation": "<string>",
"prompt": "<string>",
"size": "<string>",
"duration": 123,
"aspect_ratio": "<string>",
"enable_upsample": true
}
'import requests
url = "https://octopusx.ai/v1/video/create"
payload = {
"images": [{}],
"model": "<string>",
"orientation": "<string>",
"prompt": "<string>",
"size": "<string>",
"duration": 123,
"aspect_ratio": "<string>",
"enable_upsample": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
images: [{}],
model: '<string>',
orientation: '<string>',
prompt: '<string>',
size: '<string>',
duration: 123,
aspect_ratio: '<string>',
enable_upsample: true
})
};
fetch('https://octopusx.ai/v1/video/create', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://octopusx.ai/v1/video/create",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'images' => [
[
]
],
'model' => '<string>',
'orientation' => '<string>',
'prompt' => '<string>',
'size' => '<string>',
'duration' => 123,
'aspect_ratio' => '<string>',
'enable_upsample' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://octopusx.ai/v1/video/create"
payload := strings.NewReader("{\n \"images\": [\n {}\n ],\n \"model\": \"<string>\",\n \"orientation\": \"<string>\",\n \"prompt\": \"<string>\",\n \"size\": \"<string>\",\n \"duration\": 123,\n \"aspect_ratio\": \"<string>\",\n \"enable_upsample\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://octopusx.ai/v1/video/create")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"images\": [\n {}\n ],\n \"model\": \"<string>\",\n \"orientation\": \"<string>\",\n \"prompt\": \"<string>\",\n \"size\": \"<string>\",\n \"duration\": 123,\n \"aspect_ratio\": \"<string>\",\n \"enable_upsample\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://octopusx.ai/v1/video/create")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"images\": [\n {}\n ],\n \"model\": \"<string>\",\n \"orientation\": \"<string>\",\n \"prompt\": \"<string>\",\n \"size\": \"<string>\",\n \"duration\": 123,\n \"aspect_ratio\": \"<string>\",\n \"enable_upsample\": true\n}"
response = http.request(request)
puts response.read_body{
"id": "video_8b8232a3-847b-40e2-a3a3-912813b7ac60",
"object": "video",
"model": "veo3.1-fast-components",
"status": "queued",
"progress": 0,
"created_at": 1768489641,
"size": "1280x720",
"detail": {
"input": {
"aspect_ratio": "16:9",
"images": [
"https://example.com/frame-1.png",
"https://example.com/frame-2.png"
],
"model": "veo3.1-fast-components",
"prompt": "牛飞上天了"
}
},
"status_update_time": 1768489641
}
统一视频
创建视频
使用 POST /v1/video/create 通过统一视频格式提交 Veo 异步生成任务。
POST
https://octopusx.ai
/
v1
/
video
/
create
创建视频
curl --request POST \
--url https://octopusx.ai/v1/video/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"images": [
{}
],
"model": "<string>",
"orientation": "<string>",
"prompt": "<string>",
"size": "<string>",
"duration": 123,
"aspect_ratio": "<string>",
"enable_upsample": true
}
'import requests
url = "https://octopusx.ai/v1/video/create"
payload = {
"images": [{}],
"model": "<string>",
"orientation": "<string>",
"prompt": "<string>",
"size": "<string>",
"duration": 123,
"aspect_ratio": "<string>",
"enable_upsample": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
images: [{}],
model: '<string>',
orientation: '<string>',
prompt: '<string>',
size: '<string>',
duration: 123,
aspect_ratio: '<string>',
enable_upsample: true
})
};
fetch('https://octopusx.ai/v1/video/create', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://octopusx.ai/v1/video/create",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'images' => [
[
]
],
'model' => '<string>',
'orientation' => '<string>',
'prompt' => '<string>',
'size' => '<string>',
'duration' => 123,
'aspect_ratio' => '<string>',
'enable_upsample' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://octopusx.ai/v1/video/create"
payload := strings.NewReader("{\n \"images\": [\n {}\n ],\n \"model\": \"<string>\",\n \"orientation\": \"<string>\",\n \"prompt\": \"<string>\",\n \"size\": \"<string>\",\n \"duration\": 123,\n \"aspect_ratio\": \"<string>\",\n \"enable_upsample\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://octopusx.ai/v1/video/create")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"images\": [\n {}\n ],\n \"model\": \"<string>\",\n \"orientation\": \"<string>\",\n \"prompt\": \"<string>\",\n \"size\": \"<string>\",\n \"duration\": 123,\n \"aspect_ratio\": \"<string>\",\n \"enable_upsample\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://octopusx.ai/v1/video/create")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"images\": [\n {}\n ],\n \"model\": \"<string>\",\n \"orientation\": \"<string>\",\n \"prompt\": \"<string>\",\n \"size\": \"<string>\",\n \"duration\": 123,\n \"aspect_ratio\": \"<string>\",\n \"enable_upsample\": true\n}"
response = http.request(request)
puts response.read_body{
"id": "video_8b8232a3-847b-40e2-a3a3-912813b7ac60",
"object": "video",
"model": "veo3.1-fast-components",
"status": "queued",
"progress": 0,
"created_at": 1768489641,
"size": "1280x720",
"detail": {
"input": {
"aspect_ratio": "16:9",
"images": [
"https://example.com/frame-1.png",
"https://example.com/frame-2.png"
],
"model": "veo3.1-fast-components",
"prompt": "牛飞上天了"
}
},
"status_update_time": 1768489641
}
创建视频
Veo 统一视频入口使用POST /v1/video/create,请求体为 JSON。与 OpenAI 格式的 Veo 视频生成 不同,本接口使用 images、orientation、aspect_ratio 等字段表达参考图与画幅。
- 路由入口是
POST /v1/video/create。 - 参考图通过
images数组传入 URL 列表。 - 常见模型示例包括
veo3.1-fast-components等,以当前渠道实际可用模型为准。 - 提交成功后返回带
id、status、progress的任务对象,后续用 查询任务 轮询结果。
方法与路径
POST /v1/video/create
请求示例
curl -X POST https://octopusx.ai/v1/video/create \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"prompt": "牛飞上天了",
"model": "veo3.1-fast-components",
"images": [
"https://example.com/frame-1.png",
"https://example.com/frame-2.png"
],
"orientation": "landscape",
"size": "1280x720",
"duration": 8,
"aspect_ratio": "16:9",
"enable_upsample": false
}'
import requests
resp = requests.post(
"https://octopusx.ai/v1/video/create",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
"Accept": "application/json",
},
json={
"prompt": "牛飞上天了",
"model": "veo3.1-fast-components",
"images": [
"https://example.com/frame-1.png",
"https://example.com/frame-2.png",
],
"orientation": "landscape",
"size": "1280x720",
"duration": 8,
"aspect_ratio": "16:9",
"enable_upsample": False,
},
timeout=60,
)
print(resp.json())
const response = await fetch("https://octopusx.ai/v1/video/create", {
method: "POST",
headers: {
Authorization: "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
Accept: "application/json",
},
body: JSON.stringify({
prompt: "牛飞上天了",
model: "veo3.1-fast-components",
images: [
"https://example.com/frame-1.png",
"https://example.com/frame-2.png",
],
orientation: "landscape",
size: "1280x720",
duration: 8,
aspect_ratio: "16:9",
enable_upsample: false,
}),
});
console.log(await response.json());
响应示例
{
"id": "video_8b8232a3-847b-40e2-a3a3-912813b7ac60",
"object": "video",
"model": "veo3.1-fast-components",
"status": "queued",
"progress": 0,
"created_at": 1768489641,
"size": "1280x720",
"detail": {
"input": {
"aspect_ratio": "16:9",
"images": [
"https://example.com/frame-1.png",
"https://example.com/frame-2.png"
],
"model": "veo3.1-fast-components",
"prompt": "牛飞上天了"
}
},
"status_update_time": 1768489641
}
认证
Authorization: Bearer YOUR_API_KEY
Body
图片链接数组。传入参考图片 URL 列表。
模型名字。例如
veo3.1-fast-components。画面方向。
portrait 表示竖屏,landscape 表示横屏。提示词。描述视频内容的文本。
输出尺寸。默认为
720x1280。可选值:720x1280、1280x720。视频时长(秒)。Veo 默认为 8 秒。
宽高比。
16:9 或者 9:16。是否高清增强(仅支持横屏)。
Response
任务 ID,后续查询时作为
id 参数传入。对象类型,常见为
video。实际使用的模型名。
任务状态,常见值包括
queued、processing、completed、failed、cancelled。任务进度百分比。
创建时间(Unix 时间戳)。
输出尺寸。
提交详情,通常包含回显的
input 字段。状态最近更新时间(Unix 时间戳)。
相关接口
⌘I