GET
/
api
/
v1
/
veo
/
record-info
获取 Veo3 视频详情
curl --request GET \
  --url https://api.veo3api.ai/api/v1/veo/record-info \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "msg": "success",
  "data": {
    "taskId": "veo_task_abcdef123456",
    "paramJson": "{\"prompt\":\"A futuristic city with flying cars at sunset.\",\"waterMark\":\"KieAI\"}",
    "completeTime": "2025-06-06 10:30:00",
    "response": {
      "taskId": "veo_task_abcdef123456",
      "resultUrls": [
        "http://example.com/video1.mp4"
      ],
      "originUrls": [
        "http://example.com/original1.mp4"
      ]
    },
    "successFlag": 1,
    "errorCode": null,
    "errorMessage": "",
    "createTime": "2025-06-06 10:25:00"
  }
}

状态描述

  • 0: 生成中 - 任务正在处理中
  • 1: 成功 - 任务成功完成
  • 2: 失败 - 任务生成失败
  • 3: 生成失败 - 任务创建成功但生成失败

重要说明

  • 使用 taskId 实时查询任务状态
  • 建议定期轮询直到任务完成

Authorizations

Authorization
string
header
required

所有 API 都需要通过 Bearer Token 进行认证。

获取 API Key:

  1. 访问 API Key 管理页面 获取您的 API Key

使用方法: 添加到请求头: Authorization: Bearer YOUR_API_KEY

Query Parameters

taskId
string
required

任务 ID

Response

200
application/json

请求成功

The response is of type object.