메인 콘텐츠로 건너뛰기
GET
/
kling
/
v1
/
videos
/
image2video
/
{task_id}
curl --request GET \
  --url 'https://api.elkapi.com/kling/v1/videos/image2video/task_1234567890' \
  --header 'Authorization: Bearer <token>'
{
  "task_id": "task_1234567890",
  "status": "completed",
  "url": "https://example.com/image.png",
  "format": "mp4",
  "metadata": {
    "duration": 5,
    "fps": 30,
    "width": 1280,
    "height": 720,
    "seed": 12345
  },
  "error": {
    "code": 1,
    "message": "message"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.elkapi.com/llms.txt

Use this file to discover all available pages before exploring further.

curl --request GET \
  --url 'https://api.elkapi.com/kling/v1/videos/image2video/task_1234567890' \
  --header 'Authorization: Bearer <token>'
{
  "task_id": "task_1234567890",
  "status": "completed",
  "url": "https://example.com/image.png",
  "format": "mp4",
  "metadata": {
    "duration": 5,
    "fps": 30,
    "width": 1280,
    "height": 720,
    "seed": 12345
  },
  "error": {
    "code": 1,
    "message": "message"
  }
}

Authorizations

Authorization
string
필수
모든 엔드포인트는 Bearer Token 인증이 필요합니다.요청 헤더에 추가하세요:
Authorization: Bearer YOUR_API_KEY

Path Parameters

task_id
string
필수
작업 ID

Response

task_id
string
작업 ID예시: abcd1234efgh
status
string
작업 상태허용 값: queued, in_progress, completed, failed예시: completed
url
string
비디오 리소스 URL(성공 시)예시: https://example.com/video.mp4
format
string
비디오 형식예시: mp4
metadata
object
비디오 작업 메타데이터
metadata.duration
number
실제 생성된 비디오 길이예시: 5
metadata.fps
integer
실제 프레임레이트예시: 30
metadata.width
integer
실제 너비예시: 1280
metadata.height
integer
실제 높이예시: 720
metadata.seed
integer
사용된 랜덤 시드예시: 20231234
error
object
비디오 작업 오류 정보
error.code
integer
오류 코드
error.message
string
오류 메시지