Skip to content

🎬 视频模型 Google Veo

  • 2025.06.14 本站已经支持 视频模型 google-veo3
  • 支持 文生视频
  • 计费是按次数,一次一个视频
  • 结果是 mp4 格式,可以直接播放 样品请看这里

价格及计费

  • 基础价格 15000 积分/s
  • 带配音的价格是基础价格的 1.5 倍
  • 比如 8s 带配音的视频,价格是 15000*8*1.5 = 180000 积分(18 人民币)

Google Veo API

  • 1.生成任务
  • 2.查询任务状态
  • 3.约定头文件 都得带 Authorization Content-Type
shell
'Authorization: Bearer hk-your-key'
'Content-Type: application/json'
'Authorization: Bearer hk-your-key'
'Content-Type: application/json'

1.生成任务

post https://api.openai-hk.com/vmodel/generate

shell
curl --request POST \
  --url https://api.openai-hk.com/vmodel/generate \
  --header 'Authorization: Bearer hk-your-key' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "google-veo3",
    "input": {
        "prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic.",
        "aspect_ratio": "16:9",
        "duration": "8s",
        "enhance_prompt": true,
        "generate_audio": true
    }
}'
curl --request POST \
  --url https://api.openai-hk.com/vmodel/generate \
  --header 'Authorization: Bearer hk-your-key' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "google-veo3",
    "input": {
        "prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic.",
        "aspect_ratio": "16:9",
        "duration": "8s",
        "enhance_prompt": true,
        "generate_audio": true
    }
}'
  • 请求体
json
{
  "model": "google-veo3",
  "input": {
    "prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic.",
    "aspect_ratio": "16:9",
    "duration": "8s",
    "enhance_prompt": true,
    "generate_audio": true
  }
}
{
  "model": "google-veo3",
  "input": {
    "prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic.",
    "aspect_ratio": "16:9",
    "duration": "8s",
    "enhance_prompt": true,
    "generate_audio": true
  }
}
  • 请求体关键字说明

    字段类型说明
    modelstring可选 图生视频 google-veo3
    inputobject该模型下的参数
    input.promptstring提示语
    input.aspect_ratiostring比例 16:9 9:16 1:1
    input.durationstring时长 5s 8s
    input.generate_audioboolean是否配音 true 配音 价格是基础价格的 1.5 倍
  • 返回体 得到 id

json
{
  "id": "9090e22a-f21d-44b0-b20c-0d27b8b7fc7a"
}
{
  "id": "9090e22a-f21d-44b0-b20c-0d27b8b7fc7a"
}

2.查询任务状态

get https://api.openai-hk.com/vmodel/{id}

shell
curl --request GET \
  --url https://api.openai-hk.com/vmodel/feed/9090e22a-f21d-44b0-b20c-0d27b8b7fc7a \
  --header 'Authorization: Bearer hk-your-key' \
  --header 'Content-Type: application/json'
curl --request GET \
  --url https://api.openai-hk.com/vmodel/feed/9090e22a-f21d-44b0-b20c-0d27b8b7fc7a \
  --header 'Authorization: Bearer hk-your-key' \
  --header 'Content-Type: application/json'

返回体

json
{
  "id": "9090e22a-f21d-44b0-b20c-0d27b8b7fc7a",
  "model": "google-veo3",
  "input": {
    "aspect_ratio": "16:9",
    "duration": "8s",
    "enhance_prompt": true,
    "generate_audio": true,
    "prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic."
  },
  "output": "https://cos.aitutu.cc/files/rabbit/98BXaAyaltfdJaiIRwQ2w_output.mp4",
  "status": "succeeded",
  "error": null
}
{
  "id": "9090e22a-f21d-44b0-b20c-0d27b8b7fc7a",
  "model": "google-veo3",
  "input": {
    "aspect_ratio": "16:9",
    "duration": "8s",
    "enhance_prompt": true,
    "generate_audio": true,
    "prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic."
  },
  "output": "https://cos.aitutu.cc/files/rabbit/98BXaAyaltfdJaiIRwQ2w_output.mp4",
  "status": "succeeded",
  "error": null
}

关键字说明

字段类型说明
idstring
modelstring输入命令
inputobject该模型下的参数
outputstring结果 url 地址
statusstring状态 starting processing succeeded failed
errorstring错误信息