탁월한 모션 품질과 장면 이해력을 갖춘 최첨단 비디오 생성 모델입니다. 텍스트-비디오 및 이미지-비디오 생성을 모두 지원합니다.
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "kling-1.6-pro",
"input": {
"prompt": "Sleek smartphone rotating slowly on a reflective surface, studio lighting, product commercial style, smooth camera movement",
"duration": "5",
"aspect_ratio": "16:9"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 생성할 비디오에 대한 텍스트 설명 |
image_url | string | No | - | 이미지-비디오 변환을 위한 시작 이미지 URL |
duration | string | No | 5 | 비디오 길이 초 (5 또는 10) 510 |
aspect_ratio | string | No | 16:9 | 출력 화면 비율 16:99:161:1 |
cfg_scale | float | No | 0.5 | 프롬프트 준수도 (0.0-1.0) |
애니메이션 제품 데모
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "kling-1.6-pro",
"input": {
"prompt": "Sleek smartphone rotating slowly on a reflective surface, studio lighting, product commercial style, smooth camera movement",
"duration": "5",
"aspect_ratio": "16:9"
}
}'다이나믹한 자연 비디오
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "kling-1.6-pro",
"input": {
"prompt": "Aerial drone shot flying over misty mountain peaks at sunrise, cinematic, smooth motion, National Geographic style",
"duration": "10",
"aspect_ratio": "16:9"
}
}'POST /v1/predictions