Appearance
Get 1080P Video
GET
/api/v1/veo/get-1080p-video
Get the high-definition 1080P version of a Veo 3.1 video generation task.
Legacy note: If your task was generated via a deprecated fallback path, 1080P may already be the default output and this endpoint may not apply.
Usage Instructions #
1080P generation requires extra processing time - typically ~1-3 minutes depending on load.
If the 1080P video is not ready yet, the endpoint may return a non-200 code. In this case, wait a bit and retry (recommended interval: 20-30s) until the result is available.
Make sure the original generation task is successful before requesting 1080P.
Request
Authorization
Bearer Token
Provide your bearer token in the Authorization header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params
Generate Code
taskId
string
required
Task ID
Example: veo_task_abcdef123456
index
integer
optional
video index
Example: 0
Responses
🟢200
application/json
Request successful
Bodyapplication/json
Generate Code
code
enum<integer>
optional
Response status code
200: Success - Request has been processed successfully
401: Unauthorized - Authentication credentials are missing or invalid
404: Not Found - The requested resource or endpoint does not exist
422: Validation Error - The request parameters failed validation checks.
record is null.
Temporarily supports records within 14 days.
record result data is blank.
record status is not success.
record result data not exist.
record result data is empty.
429: Rate Limited - Request limit has been exceeded for this resource
451: Failed to fetch the image. Kindly verify any access limits set by you or your service provider.
455: Service Unavailable - System is currently undergoing maintenance
500: Server Error - An unexpected error occurred while processing the request
Allowed values: 200401404422429451455500
msg
string
optional
Error message when code != 200
Example: success
data
object
optional
resultUrl
string
optional
1080P high-definition video download URL
Example: https://tempfile.aiquickdraw.com/p/42f4f8facbb040c0ade87c27cb2d5e58\_1749711595.mp4
🔴500Error
Request Request Example
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
cURLcURL-WindowsHttpiewgetPowerShell
curl --location 'https://api.kie.ai/api/v1/veo/get-1080p-video?taskId=veo_task_abcdef123456&index=0' \
--header 'Authorization: Bearer <token>'Response Response Example
200 - 成功示例
{
"code": 200,
"msg": "success",
"data": {
"resultUrl": "https://tempfile.aiquickdraw.com/p/42f4f8facbb040c0ade87c27cb2d5e58_1749711595.mp4"
}
}