KIE.AI
English
  • English
  • Chinese
English
  • English
  • Chinese
Support
English
  • English
  • Chinese
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway APILuma API
File Upload APICommon API
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway APILuma API
File Upload APICommon API
  1. Luma API
  • Luma API Quickstart
  • Luma Modify Video Callbacks
  • Generate Luma Modify Video
    POST
  • Get Luma Modify Details
    GET
English
  • English
  • Chinese
Support
English
  • English
  • Chinese
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway APILuma API
File Upload APICommon API
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway APILuma API
File Upload APICommon API
  1. Luma API

Get Luma Modify Details

GET
/api/v1/modify/record-info
Query the status and results of Luma modified video generation tasks.

Status Descriptions#

0: Generating - Task is currently being processed
1: Success - Task completed successfully
2: Task Creation Failed - Unable to create task
3: Generation Failed - Task created successfully but generation failed
4: Callback Failed - Generation successful but callback failed

Important Notes#

Generated videos are temporarily stored and may expire
When status is "Success", check the generated video URLs in the response object
Use polling at reasonable intervals (recommended: 30 seconds) to avoid rate limiting

Usage Examples#

Polling Implementation
Single Status Check

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Responses

🟢200
application/json
Request successful
Body

🔴500Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.kie.ai/api/v1/modify/record-info?taskId=774d9a7dd608a0e49293903095e45a4c' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Successful Example
{
    "code": 200,
    "msg": "success",
    "data": {
        "taskId": "774d9a7dd608a0e49293903095e45a4c",
        "paramJson": "{\"callBackUrl\":\"https://example.com/callback\",\"prompt\":\"A futuristic cityscape\",\"videoUrl\":\"https://example.com/video.mp4\",\"waterMark\":\"\"}",
        "completeTime": 1755078480000,
        "response": {
            "taskId": "774d9a7dd608a0e49293903095e45a4c",
            "originUrls": [
                "https://tempfile.aiquickdraw.com/kieai/file/veo3-video/1755074605154fqb0m8ge.mp4"
            ],
            "resultUrls": [
                "https://tempfile.aiquickdraw.com/l/f782018c-6be4-4990-96ba-7231cd5a39e7.mp4"
            ]
        },
        "successFlag": 1,
        "createTime": 1755078171000,
        "errorCode": null,
        "errorMessage": null
    }
}
Previous
Generate Luma Modify Video
Built with