1. Kling
TikHub-AI-Proxy
  • Overview (PLEASE READ)
  • Streaming API
  • OpenAI
    • OpenAI response
      POST
    • OpenAI embeddings
      POST
    • OpenAI audio transcription
      POST
    • OpenAI chat completion
      POST
  • Claude
    • Claude chat completion
      POST
    • Claude message
      POST
  • DeepSeek
    • DeepSeek chat completion
      POST
  • Sora
    • Sora video generation
      POST
    • Get Sora video status
      GET
    • Download Sora video content
      GET
    • Remix Sora video
      POST
    • List Sora videos
      GET
    • Delete Sora video
      DELETE
  • Gemini
    • Gemini content
      POST
  • Seedance
    • Seedance video generation
      POST
    • Retrieve Seedance task
      GET
  • Kling
    • Kling text-to-video
      POST
    • Retrieve Kling text-to-video task
      GET
    • Kling image-to-video
      POST
    • Retrieve Kling image-to-video task
      GET
  • Veo
    • Veo video generation
    • Fetch Veo video generation status
  • Schemas
    • ChatCompletionRequest
    • ChatMessage
    • Tool
    • ToolCall
    • ChatCompletionResponse
    • ChatCompletionChoice
    • ContentFilterResults
    • UsageInfo
    • EmbeddingRequest
    • EmbeddingResponse
    • TranscriptionRequest
    • TranscriptionResponse
    • ClaudeMessageRequest
    • ClaudeMessageResponse
    • VideoCreateRequest
    • VideoResponse
    • VideoRemixRequest
    • GeminiGenerateContentRequest
    • VideoListResponse
    • GeminiContent
    • VideoDeleteResponse
    • GeminiGenerationConfig
    • ResponseRequest
    • GeminiGenerateContentResponse
    • ResponseObject
    • SeedanceTaskRequest
    • SeedanceTaskCreateResponse
    • SeedanceTaskResponse
    • KlingText2VideoRequest
    • KlingImage2VideoRequest
    • KlingTaskResponse
    • KlingTaskDetailResponse
    • KlingTaskListResponse
    • VeoGenerateRequest
    • VeoOperationResponse
    • VeoFetchOperationRequest
    • VeoFetchOperationResponse
  1. Kling

Kling image-to-video

POST
https://ai.tikhub.io/kling/v1/videos/image2video
Kling
Creates an image-to-video generation task using Kling AI models. Provide a reference image along with a text prompt to generate a video.

Supported Models#

kling-v1: Base model
kling-v1-6: Version 1.6
kling-v2-master: V2 Master
kling-v2-1-master: V2.1 Master
kling-v2-5-turbo: V2.5 Turbo
kling-v2-6: V2.6
kling-v3: V3 - latest model

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

Example
{
    "model_name": "kling-v3",
    "prompt": "The girl gently smiles and looks at the camera",
    "image": "https://example.com/image.png",
    "duration": "5",
    "mode": "std",
    "aspect_ratio": "16:9"
}

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://ai.tikhub.io/kling/v1/videos/image2video' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "model_name": "kling-v3",
    "prompt": "The girl gently smiles and looks at the camera",
    "image": "https://example.com/image.png",
    "duration": "5",
    "mode": "std",
    "aspect_ratio": "16:9"
}'

Responses

🟢200OK
application/json
Task created successfully
Body

Example
{
    "id": "task_QhsRYpMj41sFhMaK875USMC4wAjftfZr",
    "task_id": "task_QhsRYpMj41sFhMaK875USMC4wAjftfZr",
    "object": "video",
    "model": "kling-v2-6",
    "status": "",
    "progress": 0,
    "created_at": 1772095783
}
🟠400Bad Request
🟠401Unauthorized
🔴500Internal Server Error
Modified at 2026-03-02 20:33:07
Previous
Retrieve Kling text-to-video task
Next
Retrieve Kling image-to-video task
Built with