KIE.AI
old-model
  • All Model
  • old-model
language
language
  • 🇺🇸 English
  • 🇨🇳 Chinese
language
language
  • 🇺🇸 English
  • 🇨🇳 Chinese
Support
old-model
  • All Model
  • old-model
old-model
  • All Model
  • old-model
Suno API4o Image APIVeo3.1 APIRunway API
Flux Kontext API
Suno API4o Image APIVeo3.1 APIRunway API
Flux Kontext API
  1. Runway API
  • Runway API Quickstart
  • AI Video Generation Callbacks
  • AI Video Extension Callbacks
  • Aleph
    • Aleph Video Generation Callbacks
    • Generate Aleph Video
      POST
    • Get Aleph Video Details
      GET
  • Generate AI Video
    POST
  • Get AI Video Details
    GET
  • Extend AI Video
    POST
  1. Runway API

Generate AI Video

POST
/api/v1/runway/generate
Create dynamic AI-generated videos from text prompts or image references.

Usage Guide#

Create short videos (5-10 seconds) using AI visualization
Generate videos based on text descriptions or reference images
Suitable for social media content, digital art, or concept visualization

Parameter Details#

prompt describes what you want to show in the video
imageUrl provides visual reference for AI
aspectRatio determines video orientation (vertical or horizontal)
duration control the video duration (5 or 10 seconds), where if a 10-second video is selected, 1080p resolution cannot be selected
quality video resolution (720p or 1080p), where if 1080p is selected, 10-second video cannot be generated
waterMark video watermark text content, empty string means no watermark

Developer Notes#

Generated videos are stored for 14 days before automatic deletion
For text-only generation, aspect ratio must be explicitly specified

Callbacks

onVideoGenerated

Request

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

Examples

Responses

🟢200
application/json
Request successful
Bodyapplication/json

🔴500Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.kie.ai/api/v1/runway/generate' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "prompt": "A fluffy orange cat dancing energetically in a colorful room with disco lights",
    "imageUrl": "https://example.com/cat-image.jpg",
    "duration": "5",
    "quality": "720p",
    "aspectRatio": "9:16",
    "waterMark": "kie.ai",
    "callBackUrl": "https://api.example.com/callback"
}'
Response Response Example
200 - 成功示例
{
    "code": 200,
    "msg": "success",
    "data": {
        "taskId": "ee603959-debb-48d1-98c4-a6d1c717eba6"
    }
}
Previous
Get Aleph Video Details
Next
Get AI Video Details
Built with