KIE.AI
English
  • English
  • Chinese
English
  • English
  • Chinese
Support
English
  • English
  • Chinese
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway API
Luma APIFile Upload APICommon API
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway API
Luma APIFile Upload APICommon API
  1. Runway API
  • Runway API Quickstart
  • AI Video Generation Callbacks
  • AI Video Extension Callbacks
  • Aleph Video Generation Callbacks
  • Generate AI Video
    POST
  • Get AI Video Details
    GET
  • Extend AI Video
    POST
  • Generate Aleph Video
    POST
  • Get Aleph Video Details
    GET
English
  • English
  • Chinese
Support
English
  • English
  • Chinese
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway API
Luma APIFile Upload APICommon API
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway API
Luma APIFile Upload APICommon API
  1. Runway API

Get Aleph Video Details

GET
/api/v1/aleph/record-info
Retrieving comprehensive information about Runway Alpeh video generation tasks

Overview#

Retrieve detailed information about your Runway Alpeh video generation tasks, including current status, generation parameters, video URLs, and error details. This endpoint is essential for monitoring task progress and accessing completed videos.
Use this endpoint to poll task status if you're not using callbacks, or to retrieve detailed information for completed tasks.

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/aleph/record-info?taskId=ee603959-debb-48d1-98c4-a6d1c717eba6' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Successful Example
{
    "code": 200,
    "msg": "success",
    "data": {
        "taskId": "ee603959-debb-48d1-98c4-a6d1c717eba6",
        "paramJson": "{\"prompt\":\"A majestic eagle soaring through mountain clouds at sunset\",\"videoUrl\":\"https://example.com/input-video.mp4\"}",
        "response": {
            "taskId": "ee603959-debb-48d1-98c4-a6d1c717eba6",
            "resultVideoUrl": "https://file.com/k/xxxxxxx.mp4",
            "resultImageUrl": "https://file.com/m/xxxxxxxx.png"
        },
        "completeTime": "2023-08-15T14:30:45Z",
        "createTime": "2023-08-15T14:25:00Z",
        "successFlag": 1,
        "errorCode": 0,
        "errorMessage": ""
    }
}
Previous
Generate Aleph Video
Built with