Runway의 Gen-4.5 모델로, 텍스트-비디오 및 이미지-비디오 생성에서 최고 수준의 모션 품질, 프롬프트 반영도, 비주얼 퀄리티를 제공합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 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": "runwayml/gen-4.5",
"input": {
"prompt": "A dense, verdant jungle world made up of small lego-like pieces. We see a rainbow chameleon running through the 3D world, the camera in and out of focus.",
"duration": 10,
"aspect_ratio": "16:9"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 비디오 생성을 위한 텍스트 프롬프트 |
image | string | No | - | 선택적 첫 프레임 이미지. 생략 시 텍스트만으로 비디오 생성 |
duration | integer | No | 5 | 출력 비디오 길이 초 510 |
aspect_ratio | string | No | 16:9 | 비디오 화면 비율 16:99:164:33:41:121:9 |
seed | integer | No | - | 재현 가능한 생성을 위한 랜덤 시드 |
이 모델의 image 파라미터에 파일을 전달하는 방법은 3가지입니다.
POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=runwayml/gen-4.5" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "runwayml/gen-4.5",
"input": {
"prompt": "your prompt here",
"image": "https://example.com/image.jpg"
}
}POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.
| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | - | 모델 식별자 |
input | object | Yes | - | 위 테이블의 모델별 파라미터를 포함하는 객체 |
output_folder | string | No | - | 결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가) |
webhook_url | string | No | - | 완료 시 호출할 Webhook URL |
is_public | boolean | No | false | true 시 결과물을 영구 공개 URL로도 제공 |
최대 길이인 10초로 생성하는 완전 텍스트 기반 장면
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "runwayml/gen-4.5",
"input": {
"prompt": "A dense, verdant jungle world made up of small lego-like pieces. We see a rainbow chameleon running through the 3D world, the camera in and out of focus.",
"duration": 10,
"aspect_ratio": "16:9"
}
}'와이드 시네마틱 화면비를 사용한 더 짧고 저렴한 클립
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "runwayml/gen-4.5",
"input": {
"prompt": "A vintage train winding through snow-capped mountains at golden hour",
"duration": 5,
"aspect_ratio": "21:9"
}
}'