Veo 统一创建视频 - QuickRouter API 中转接口
▼
Authorization
在 Header 添加参数 Authorization,其值为 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
概述
请求参数
Header 参数
Content-Type
string
必需
示例: application/json
Accept
string
必需
示例: application/json
Authorization
string
可选
示例: Bearer {{YOUR_API_KEY}}
Body 参数 application/json
enable_upsample
boolean
可选
enhance_prompt
boolean
可选
由于 veo 只支持英文提示词,所以如果需要中文自动转成英文提示词,可以开启此开关
images
array[string]
可选
当模型是带 veo2-fast-frames 最多支持两个,分别是首尾帧,当模型是 veo3-pro-frames 最多支持一个首帧,当模型是 veo2-fast-components 最多支持 3 个,此时图片为视频中的元素
model
可选
enum<string> 必需 枚举值:
veo2
可选
Google最新的高级人工智能模型, veo2 fast 模式,质量好速度快 veo2-fast Google最新的高级人工智能模型, veo2 fast 模式,质量好速度快 veo2-fast-frames Google最新的高级人工智能模型, veo2 fast 模式,支持首尾帧 veo2-fast-components Google最新的高级人工智能模型, veo2 fast 模式, 支持上传图片素材,最终生成的视频会将所有图片合并成视频中的一部分,比如,图片 1 变成背景,图片 2 笼罩天空等等 veo2-pro Google最新的高级人工智能模型, veo2 高质量 模式,质量很高,同时价格也很昂贵,使用需注意 veo2-pro-components Google最新的高级人工智能模型, veo2 pro模式, 支持上传图片素材,最终生成的视频会将所有图片合并成视频中的一部分,比如,图片 1 变成背景,图片 2 笼罩天空等等 展开全部 veo3veo3-fastveo3-fast-framesveo3-framesveo3-proveo3-pro-framesveo3.1veo3.1-fastveo3.1-proveo3.1-4kveo3.1-pro-4k
prompt
string
可选
提示词 必需
aspect_ratio
string
可选
⚠️仅veo3支持,“16:9”或“9:16” { "enable_upsample": true, "enhance_prompt": true, "images": [ "https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png" ], "model": "veo3.1-fast", "prompt": "make animate", "aspect_ratio": "16:9" } 请求
示例
{
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
}
请求示例代码
curl --location --request POST 'https://api.quickrouter.ai/v1/video/create' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
}'
var myHeaders = new Headers();
myHeaders.append("Accept", "application/json");
myHeaders.append("Authorization", "Bearer YOUR_API_KEY");
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://api.quickrouter.ai/v1/video/create", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
import java.io.*;
import java.net.*;
import java.util.*;
URL url = new URL("https://api.quickrouter.ai/v1/video/create");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setRequestProperty("Accept", "application/json");
conn.setRequestProperty("Authorization", "Bearer YOUR_API_KEY");
conn.setRequestProperty("Content-Type", "application/json");
conn.setDoOutput(true);
String jsonInputString = "{
\"enable_upsample\": true,
\"enhance_prompt\": true,
\"images\": [
\"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png\"
],
\"model\": \"veo3.1-fast\",
\"prompt\": \"make animate\",
\"aspect_ratio\": \"16:9\"
}";
try(OutputStream os = conn.getOutputStream()) {
byte[] input = jsonInputString.getBytes("utf-8");
os.write(input, 0, input.length);
}
int responseCode = conn.getResponseCode();
System.out.println("Response Code: " + responseCode);
import Foundation
let urlString = "https://api.quickrouter.ai/v1/video/create"
guard let url = URL(string: urlString) else { return }
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.addValue("application/json", forHTTPHeaderField: "Accept")
request.addValue("Bearer YOUR_API_KEY", forHTTPHeaderField: "Authorization")
request.addValue("application/json", forHTTPHeaderField: "Content-Type")
let httpBody = "{
\"enable_upsample\": true,
\"enhance_prompt\": true,
\"images\": [
\"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png\"
],
\"model\": \"veo3.1-fast\",
\"prompt\": \"make animate\",
\"aspect_ratio\": \"16:9\"
}"
request.httpBody = httpBody.data(using: .utf8)
let task = URLSession.shared.dataTask(with: request) { data, response, error in
if let data = data {
print(String(data: data, encoding: .utf8)!)
}
}
task.resume()
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
body := strings.NewReader(`{
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
}`)
req, _ := http.NewRequest("POST", "https://api.quickrouter.ai/v1/video/create", body)
req.Header.Set("Accept", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_KEY")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
bodyBytes, _ := io.ReadAll(resp.Body)
fmt.Println(string(bodyBytes))
}
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.quickrouter.ai/v1/video/create',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => '{
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
}',
CURLOPT_HTTPHEADER => array(
"Accept: application/json",
"Authorization: Bearer YOUR_API_KEY",
"Content-Type: application/json",
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
import http.client
import json
conn = http.client.HTTPSConnection("api.quickrouter.ai")
payload = json.dumps({
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
})
headers = {
'Accept': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
}
conn.request("POST", "/v1/video/create", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
POST https://api.quickrouter.ai/v1/video/create HTTP/1.1
Accept: application/json
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
}
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.quickrouter.ai/v1/video/create");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Accept: application/json");
headers = curl_slist_append(headers, "Authorization: Bearer YOUR_API_KEY");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{
\"enable_upsample\": true,
\"enhance_prompt\": true,
\"images\": [
\"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png\"
],
\"model\": \"veo3.1-fast\",
\"prompt\": \"make animate\",
\"aspect_ratio\": \"16:9\"
}");
CURLcode ret = curl_easy_perform(hnd);
var client = new RestClient("https://api.quickrouter.ai/v1/video/create");
var request = new RestRequest(Method.POST);
request.AddHeader("Accept", "application/json");
request.AddHeader("Authorization", "Bearer YOUR_API_KEY");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", @"{
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
#import <Foundation/Foundation.h>
NSURL *url = [NSURL URLWithString:@"https://api.quickrouter.ai/v1/video/create"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"Bearer YOUR_API_KEY" forHTTPHeaderField:@"Authorization"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:[@"{
\"enable_upsample\": true,
\"enhance_prompt\": true,
\"images\": [
\"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png\"
],
\"model\": \"veo3.1-fast\",
\"prompt\": \"make animate\",
\"aspect_ratio\": \"16:9\"
}" dataUsingEncoding:NSUTF8StringEncoding]];
NSURLSessionDataTask *task = [[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
NSLog(@"%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
}];
[task resume];
require "uri"
require "net/http"
require "json"
url = URI("https://api.quickrouter.ai/v1/video/create")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Accept"] = "application/json"
request["Authorization"] = "Bearer YOUR_API_KEY"
request["Content-Type"] = "application/json"
request.body = '{
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
}'
response = http.request(request)
puts response.read_body
(* Requires cohttp and lwt *)
let url = "https://api.quickrouter.ai/v1/video/create" in
let headers = Cohttp.Header.of_list [
("Accept", "application/json");
("Authorization", "Bearer YOUR_API_KEY");
("Content-Type", "application/json");
] in
let body = Cohttp_lwt.Body.of_string '{
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
}' in
Lwt_main.run (
Cohttp_lwt_unix.Client.request ?body:(Some body) ~method_:`POST ~headers (Uri.of_string url)
>>= fun (resp, body) ->
Cohttp_lwt.Body.to_string body >|= fun s -> print_endline s
)
import 'package:http/http.dart' as http;
import 'dart:convert';
var headers = {
"Accept": "application/json",
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
};
var body = json.encode({
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
});
var response = await http.post(Uri.parse("https://api.quickrouter.ai/v1/video/create"), headers: headers, body: body);
print(response.body);
library(httr)
url <- "https://api.quickrouter.ai/v1/video/create"
body <- '{
"enable_upsample": true,
"enhance_prompt": true,
"images": [
"https://filesystem.site/cdn/20250702/w8AauvxxPhYoqqkFWdMippJpb9zBxN.png"
],
"model": "veo3.1-fast",
"prompt": "make animate",
"aspect_ratio": "16:9"
}'
response <- post(url, body = body, add_headers("Accept" = "application/json", "Authorization" = "Bearer YOUR_API_KEY", "Content-Type" = "application/json"))
content(response, "text", encoding = "UTF-8")
返回响应
响应参数 🟢 200 OK · application/json
id
string
必需
status
string
必需
status_update_time
integer
必需
enhanced_prompt
string
必需
{ "id": "veo3-fast-frames:1757555257-PORrVn9sa9", "status": "pending", "status_update_time": 1757555257582 }
示例
{
"id": "veo3-fast-frames:1757555257-PORrVn9sa9",
"status": "pending",
"status_update_time": 1757555257582
}
常见错误
- 401 认证失败:检查 API Key 是否正确
- 429 请求限流:降低调用频率或升级套餐
- 500 服务器错误:稍后重试
注意事项
- 请确保 API Key 有足够的余额
- 请求频率受 API 限制,请参考价格页面