Skip to content
Home

Kling Identify Face

kling-identify-face

Identify whether the video is suitable for lip-sync service.

POST /v1/queue/kling-identify-face # Create task
GET /v1/queue/kling-identify-face/requests/{request_id}/status # Check status
GET /v1/queue/kling-identify-face/requests/{request_id}/response # Get result
PUT /v1/queue/kling-identify-face/requests/{request_id}/cancel # Cancel task
Окно терминала
curl --request 'POST' 'https://odirouter.ai/model/v1/queue/kling-identify-face' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--location \
--data-raw '{
"video_url": "https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4"
}'
video_id string

Video ID

Used to specify the video and determine whether the video is available for lip-sync service

Either video_id or video_url must be provided, but not both at the same time

video_url string

URL to retrieve the uploaded video

Used to specify the video and determine whether the video is available for lip-sync service

Either video_id or video_url must be provided, but not both at the same time

Video requirements:

Supported formats: .mp4, .mov

File size: max 100MB

Duration: 2 to 60 seconds

Resolution: only 720p and 1080p supported

Dimensions: width and height between 512px and 2160px

The system will validate the video content, and will return an error code if there are any issues

{
"request_id": "task_01hxyz...",
"response_url": "https://odirouter.ai/model/v1/queue/kling-identify-face/requests/task_01hxyz.../response",
"status_url": "https://odirouter.ai/model/v1/queue/kling-identify-face/requests/task_01hxyz.../status",
"cancel_url": "https://odirouter.ai/model/v1/queue/kling-identify-face/requests/task_01hxyz.../cancel",
"queue_position": 0
}
FieldTypeDescription
request_idstringTask ID used for all follow-up operations.
response_urlstringURL to fetch the final result.
status_urlstringURL to query task status.
cancel_urlstringURL to cancel the task.
queue_positionintCurrent queue position.