makevid
  1. Kling
makevid
  • Introduction
  • Luma
    • Create Luma Video
      POST
    • Get Luma Video
      GET
  • Runway
    • Create Runway Video
      POST
    • Get Runway Video
      GET
  • Kling
    • Text to Video
      POST
    • Get Text2Video Result
      GET
    • Image to Video
      POST
    • Get Image2Video Result
      GET
  1. Kling

Image to Video

POST
/api/v1/kling/image2video/create_kling

Request

Body Params application/json

Example
{
    "prompt": "camera pull out",
    "negative_prompt": "ugly",
    "cfg_scale": 0.8,
    "mode": "std",
    "duration": "5",
    "image":"https://www.example.com/image.png",
    "image_tail":"https://www.example.com/image_tail.png"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://makevid.ai/api/v1/kling/image2video/create_kling' \
--header 'Content-Type: application/json' \
--data-raw '{
    "prompt": "camera pull out",
    "negative_prompt": "ugly",
    "cfg_scale": 0.8,
    "mode": "std",
    "duration": "5",
    "image":"https://www.example.com/image.png",
    "image_tail":"https://www.example.com/image_tail.png"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "code": 0,
    "message": "SUCCEED",
    "request_id": "CmC9rGbtVzEAAAAAADQY-A",
    "data": {
        "task_id": "CmC9rGbtVzEAAAAAADQY-A",
        "task_status": "submitted",
        "created_at": 1726939154945,
        "updated_at": 1726939154945
    }
}
Modified at 2024-09-24 09:37:12
Previous
Get Text2Video Result
Next
Get Image2Video Result
Built with