Skip to main content
Kuaishou느림울트라

Kling v3 Video

Kling Video 3.0은 최대 15초의 시네마틱 비디오를 생성하는 Kuaishou의 플래그십 텍스트/이미지-비디오 모델입니다. 멀티샷 제어, 네이티브 오디오, 시작/종료 프레임 이미지, 전용 4K 모드를 지원합니다.

2610 크레딧
pro(1080p) 5초·오디오 없음(기본값) 기준 — 초당 과금: standard 391/초, pro 521/초, 4k 978/초, 오디오 켜면 standard 587/초, pro 782/초 (4k는 동일)
최대 15초(3~15초)의 시네마틱 비디오 생성
3단계 품질: standard(720p), pro(1080p, 기본값), 4k
multi_prompt로 한 번의 생성에서 최대 6개의 연속 샷 제어
선택적 네이티브 오디오 생성 (기본값은 꺼짐)
시작·종료 프레임 이미지로 정밀한 이미지-비디오 제어

지금 바로 실행해보세요

콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요

로그인 후 사용해보기

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

빠른 시작

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "kwaivgi/kling-v3-video",
  "input": {
    "mode": "pro",
    "prompt": "First-person POV of a roller coaster plunging into the mouth of an erupting volcano. The track spirals down through rivers of glowing orange lava, sparks and embers flying past the camera. The coaster banks hard around a pillar of molten rock, then launches upward through a vent, bursting out of the volcano's crater into a dazzling sunset sky above the clouds. Wind roaring, riders screaming with excitement, the deep rumble of the volcano.",
    "duration": 15,
    "aspect_ratio": "16:9",
    "generate_audio": true
  }
}'

파라미터

파라미터타입필수기본값설명
promptstringYes-비디오 생성을 위한 텍스트 프롬프트 (최대 2500자)
modestringNopro'standard'는 720p, 'pro'는 1080p, '4k'는 4K 생성
standardpro4k
durationintegerNo5비디오 길이 초 (3~15)
start_imagestringNo-첫 프레임 이미지 (.jpg/.jpeg/.png, 최대 10MB, 최소 300px, 비율 1:2.5~2.5:1)
end_imagestringNo-마지막 프레임 이미지 (start_image 필요)
aspect_ratiostringNo16:9화면 비율. start_image 제공 시 무시됨
16:99:161:1
multi_promptstringNo-멀티샷 모드용 샷 정의 JSON 배열, 예: [{"prompt":"...","duration":3}] (최대 6샷, 샷당 최소 1초, 합계는 duration과 일치해야 함)
generate_audiobooleanNofalse비디오의 네이티브 오디오 생성 (standard/pro 등급에서 초당 가격 상승)
negative_promptstringNo-비디오에 나타나지 않았으면 하는 요소 (최대 2500자)

파일 입력 방법

이 모델의 start_imageend_image 파라미터에 파일을 전달하는 방법은 3가지입니다.

추천

간편 업로드 (Multipart)

POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.

curl -X POST "https://api.core.today/v1/predictions/upload" \
  -H "X-API-Key: cdt_your_api_key" \
  -F "model=kwaivgi/kling-v3-video" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:start_image=@your_file.png"

이미지 URL 전달

공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.

{
  "model": "kwaivgi/kling-v3-video",
  "input": {
    "prompt": "your prompt here",
    "start_image": "https://example.com/image.jpg"
  }
}
File Upload 문서에서 Presigned URL 방식 등 더 자세한 업로드 방법을 확인하세요.

공통 파라미터

POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.

파라미터타입필수기본값설명
modelstringYes-모델 식별자
inputobjectYes-위 테이블의 모델별 파라미터를 포함하는 객체
output_folderstringNo-결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가)
webhook_urlstringNo-완료 시 호출할 Webhook URL
is_publicbooleanNofalsetrue 시 결과물을 영구 공개 URL로도 제공

예제

오디오 포함 15초 시네마틱 라이드

네이티브 오디오를 켠 pro 등급의 장초수 샷

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "kwaivgi/kling-v3-video",
  "input": {
    "mode": "pro",
    "prompt": "First-person POV of a roller coaster plunging into the mouth of an erupting volcano. The track spirals down through rivers of glowing orange lava, sparks and embers flying past the camera. The coaster banks hard around a pillar of molten rock, then launches upward through a vent, bursting out of the volcano's crater into a dazzling sunset sky above the clouds. Wind roaring, riders screaming with excitement, the deep rumble of the volcano.",
    "duration": 15,
    "aspect_ratio": "16:9",
    "generate_audio": true
  }
}'

멀티샷 시퀀스 (Standard, 무음)

가장 저렴한 등급에서 한 번의 생성으로 만드는 3개의 일관된 샷

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "kwaivgi/kling-v3-video",
  "input": {
    "mode": "standard",
    "prompt": "A day in the life of a lighthouse keeper on a remote northern island",
    "multi_prompt": "[{\"prompt\":\"Dawn breaks over a rocky island, the lighthouse silhouetted against pink clouds\",\"duration\":3},{\"prompt\":\"The keeper climbs the spiral staircase, lantern light flickering on stone walls\",\"duration\":3},{\"prompt\":\"Aerial pull-back reveals the lighthouse beam sweeping across a stormy sea at dusk\",\"duration\":3}]",
    "duration": 9,
    "aspect_ratio": "16:9",
    "generate_audio": false
  }
}'

팁 & 모범 사례

1mode 기본값은 pro(1080p, 336/초)입니다 — 초안·반복 작업에는 25% 저렴한 standard(252/초)를 사용하세요
2오디오를 켜면 standard/pro에서 초당 가격이 50% 상승합니다(252→378, 336→504). 4k는 오디오 여부와 무관하게 630/초로 동일합니다
34k 모드는 가장 비싼 등급(630/초)입니다 — 탐색 단계가 아닌 최종 히어로 렌더에만 사용하세요
4여러 생성을 이어붙이는 대신 multi_prompt로 일관된 멀티샷 시퀀스를 만드세요. 샷 길이의 합은 duration과 일치해야 합니다
5start_image는 첫 프레임을 고정하며(이때 aspect_ratio는 무시됨), end_image로 마지막 프레임까지 고정할 수 있습니다

사용 사례

하나의 프롬프트로 만드는 멀티샷 미니 트레일러·단편 내러티브 영상
네이티브 동기화 사운드가 들어간 시네마틱 마케팅 푸티지
프리미엄 브랜드 콘텐츠용 4K 히어로 샷
시작·종료 프레임으로 고정한 이미지-비디오 애니메이션
세로·정사각형 포맷의 장초수(최대 15초) 소셜 클립