模型信息
| 模型 ID | veo3.1 | 供应商 | |
|---|---|---|---|
| 输入模态 | 未注明 | 输出模态 | 未注明 |
| 分类 | 未注明 | 发布时间 | 2025-10-16 00:47:19 |
调用接口
| 分组 | 接口 | 渠道 | 方法 | 路径 |
|---|---|---|---|---|
| 全部接口 | Veo查询任务 | 本站 AI 中转站 | GET | /v2/videos/generations/{task_id} |
| 全部接口 | Veo文生视频 | 本站 AI 中转站 | POST | /v2/videos/generations |
| 全部接口 | Veo图生视频 | 本站 AI 中转站 | POST | /v2/videos/generations |
GET /v2/videos/generations/{task_id}
### Veo查询任务
统一接口格式
status 枚举:
NOT_START : 未开始
IN_PROGRESS : 正在执行
SUCCESS : 执行完成
FAILURE : 失败
{
"summary": "Veo查询任务",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": []
}
}
},
"description": "成功"
}
},
"parameters": [
{
"in": "path",
"name": "task_id",
"schema": {
"type": "string"
},
"required": true,
"description": ""
}
],
"description": "### Veo查询任务\n统一接口格式\nstatus 枚举:\nNOT_START : 未开始\nIN_PROGRESS : 正在执行\nSUCCESS : 执行完成\nFAILURE : 失败",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"title": "Veo查询任务",
"$schema": "",
"required": [
"prompt",
"model"
],
"properties": {
"seed": {
"type": "integer"
},
"size": {
"type": "string"
},
"model": {
"type": "string"
},
"images": {
"type": "array",
"items": {
"type": "string"
}
},
"prompt": {
"type": "string"
},
"duration": {
"type": "integer"
},
"template": {
"type": "string"
},
"watermark": {
"type": "boolean"
},
"resolution": {
"type": "string"
},
"prompt_extend": {
"type": "string"
},
"negative_prompt": {
"type": "string"
}
},
"x-apifox-id": "343593236"
}
}
},
"required": true
}
}POST /v2/videos/generations
{
"summary": "Veo文生视频",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": []
}
}
},
"description": "成功"
}
},
"parameters": [],
"description": "",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"title": "Veo文生视频",
"$schema": "",
"required": [
"prompt",
"model"
],
"properties": {
"model": {
"enum": [
"veo3",
"veo3-fast",
"veo3-pro",
"veo3-pro-frames",
"veo2",
"veo2-fast",
"veo2-fast-frames",
"veo2-fast-components",
"veo2-pro",
"veo3-fast-frames",
"veo3.1",
"veo3.1-pro"
],
"type": "string"
},
"prompt": {
"type": "string"
},
"aspect_ratio": {
"enum": [
"16:9",
"9:16"
],
"type": "string"
},
"enhance_prompt": {
"type": "boolean",
"description": "是否优化提示词,一般是false;由于 veo 只支持英文提示词,所以如果需要中文自动转成英文提示词,可以开启此开关"
},
"enable_upsample": {
"type": "boolean",
"description": "是否分辨率提升;返回 1080p 视频"
}
},
"x-apifox-id": "343590061"
}
}
},
"required": true
}
}POST /v2/videos/generations
### Veo图生视频
当模型是带 veo2-fast-frames 最多支持两个,分别是首尾帧
当模型是 veo3-pro-frames 最多支持一个首帧
当模型是 veo2-fast-components 最多支持 3 个,此时图片为视频中的元素
不传 aspect_ratio 参数时,会根据参考图自动匹配比例,如果无法判断默认生成横屏
{
"summary": "Veo图生视频",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": []
}
}
},
"description": "成功"
}
},
"parameters": [],
"description": "### Veo图生视频\n当模型是带 veo2-fast-frames 最多支持两个,分别是首尾帧\n当模型是 veo3-pro-frames 最多支持一个首帧\n当模型是 veo2-fast-components 最多支持 3 个,此时图片为视频中的元素\n\n不传 aspect_ratio 参数时,会根据参考图自动匹配比例,如果无法判断默认生成横屏",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"title": "Veo图生视频",
"$schema": "",
"required": [
"prompt",
"model",
"images"
],
"properties": {
"model": {
"enum": [
"veo3-pro-frames",
"veo3-fast-frames",
"veo2-fast-frames",
"veo2-fast-components",
"veo3.1",
"veo3.1-pro",
"veo3.1-components"
],
"type": "string"
},
"images": {
"type": "array",
"items": {
"type": "string"
},
"description": "url or base64;当模型是带 veo2-fast-frames 最多支持两个,分别是首尾帧,当模型是 veo3-pro-frames 最多支持一个首帧,当模型是 veo2-fast-components 最多支持 3 个,此时图片为视频中的元素"
},
"prompt": {
"type": "string"
},
"aspect_ratio": {
"enum": [
"9:16",
"16:9"
],
"type": "string"
},
"enhance_prompt": {
"type": "boolean",
"description": "是否优化提示词,一般是false;由于 veo 只支持英文提示词,所以如果需要中文自动转成英文提示词,可以开启此开关"
}
},
"x-apifox-id": "343632235"
}
}
},
"required": true
}
}价格
| 价格组 | 渠道 | 计费项 | 价格 | 单位 |
|---|---|---|---|---|
| veo&grok-备用1 | AI 中转站 | request | CNY 1.2 | request |
服务级错误码参照(error_code):
| 错误码 | 说明 | |
|---|---|---|
| 221301 | 数据源超时 | |
| 221303 | 认证失败 认证失败,请稍后重试 认证失败,该卡当日连续多次认证不通过被限制校验,次日恢复 |
|
| 221306 | 参数错误 参数错误:姓名格式不正确 参数错误:手机号格式不正确 参数错误:身份证格式不正确 参数错误:银行卡号格式不正确 同一银行卡请求过于频繁 |
系统级错误码参照:
| 错误码 | 说明 | |
|---|---|---|
| 10001 | 错误的请求KEY | |
| 10002 | 该KEY无请求权限 | |
| 10003 | KEY过期 | |
| 10004 | 错误的OPENID | |
| 10005 | 应用未审核超时,请提交认证 | |
| 10007 | 未知的请求源 | |
| 10008 | 被禁止的IP | |
| 10009 | 被禁止的KEY | |
| 10011 | 当前IP请求超过限制 | |
| 10012 | 请求超过次数限制 | |
| 10013 | 测试KEY超过请求限制 | |
| 10014 | 系统内部异常(调用充值类业务时,请务必联系客服或通过订单查询接口检测订单,避免造成损失) | |
| 10020 | 接口维护 | |
| 10021 | 接口停用 |
错误码格式说明(示例:200201):
| 2 | 002 | 01 | |
|---|---|---|---|
| 服务级错误(1为系统级错误) | 服务模块代码(即数据ID) | 具体错误代码 |
使用文档下载
| 附件标题/下载链接 | 更新时间 | |
|---|---|---|
| 接口资料:GET /v2/videos/generations/{task_id}(Veo查询任务) | 2026-09-09 15:29:06 | |
| 接口资料:POST /v2/videos/generations(Veo文生视频) | 2026-09-09 15:29:06 | |
| 接口资料:POST /v2/videos/generations(Veo图生视频) | 2026-09-09 15:29:06 | |
| 价格分组:veo&grok-备用1(CNY 1.2/request) | 2026-09-09 15:29:06 | |
| 供应商令牌分组折扣资料 | 2026-09-09 15:29:06 |
常见问题:
| 标题 | 更新时间 | |
|---|---|---|
| Token 是什么?中文、英文与上下文窗口如何计算 | 2026-09-21 00:31:09 | |
| LLM API 费用如何计算?如何选择合适的模型 | 2026-09-21 01:16:03 | |
| Word-to-Token 转换与用量估算指南 | 2026-09-21 00:31:09 |
gemini-3.8-flash-thinking-medium
gemini-3.8-flash-thinking-high