Kling O1 Reference Image 2 Video Serverless API
Kling Omni Video O1 transforms static images into dynamic, identity-preserving cinematic videos.
1import requests
2import json
3
4url = "https://api.segmind.com/v1/kling-o1-reference-image-to-video"
5headers = {
6 "x-api-key": "YOUR_API_KEY",
7 "Content-Type": "application/json"
8}
9
10data = {
11 "prompt": "Create a cinematic video sequence with smooth camera movements of @image1 riding on @image2",
12 "image_urls": [
13 "https://segmind-resources.s3.amazonaws.com/output/01641ffc-a5dc-4383-a978-8d14f785247d-Screenshot_2025-11-24_120343.png",
14 "https://segmind-resources.s3.amazonaws.com/output/5aab39a0-7dbb-42c3-9269-bf52141ae0ca-horse.jpg"
15 ],
16 "duration": "5",
17 "aspect_ratio": "16:9"
18}
19
20response = requests.post(url, headers=headers, json=data)
21
22if response.status_code == 200:
23 result = response.json()
24 print(json.dumps(result, indent=2))
25else:
26 print(f"Error: {response.status_code}")
27 print(response.text) 1import requests
2import json
3
4url = "https://api.segmind.com/v1/kling-o1-reference-image-to-video"
5headers = {
6 "x-api-key": "YOUR_API_KEY",
7 "Content-Type": "application/json"
8}
9
10data = {
11 "prompt": "Create a cinematic video sequence with smooth camera movements of @image1 riding on @image2",
12 "image_urls": [
13 "https://segmind-resources.s3.amazonaws.com/output/01641ffc-a5dc-4383-a978-8d14f785247d-Screenshot_2025-11-24_120343.png",
14 "https://segmind-resources.s3.amazonaws.com/output/5aab39a0-7dbb-42c3-9269-bf52141ae0ca-horse.jpg"
15 ],
16 "duration": "5",
17 "aspect_ratio": "16:9"
18}
19
20response = requests.post(url, headers=headers, json=data)
21
22if response.status_code == 200:
23 result = response.json()
24 print(json.dumps(result, indent=2))
25else:
26 print(f"Error: {response.status_code}")
27 print(response.text)API Endpoint
https://api.segmind.com/v1/kling-o1-reference-image-to-videoParameters
image_urlsrequiredstring[]List of reference image URLs. Reference them as @Image1, @Image2 in prompt
promptrequiredstringDetailed scene description. Use @Image1, @Image2 for images and @Element1, @Element2 for elements
aspect_ratiooptionalstringSets frame dimensions
"16:9""16:9""9:16""1:1"durationoptionalintegerVideo duration in seconds
5510elementsoptionalstringList of elements with reference and frontal images. Each element should have 'reference_image_urls' (list) and 'frontal_image_url' (str). Reference as @Element1, @Element2 in prompt
nullResponse Type
Returns: Video
Common Error Codes
The API returns standard HTTP status codes. Detailed error messages are provided in the response body.
Bad Request
Invalid parameters or request format
Unauthorized
Missing or invalid API key
Forbidden
Insufficient permissions
Not Found
Model or endpoint not found
Insufficient Credits
Not enough credits to process request
Rate Limited
Too many requests
Server Error
Internal server error
Bad Gateway
Service temporarily unavailable
Timeout
Request timed out