OpenAI의 가장 진보한 동기화 오디오 비디오 생성 모델입니다. Sora 2의 프리미엄 등급으로 더 높은 충실도와 최대 1024p 해상도, 레퍼런스 프레임을 통한 이미지-비디오를 지원합니다.
콘솔의 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": "openai/sora-2-pro",
"input": {
"prompt": "Scottish Highland coo with ginger fur getting a parking ticket from a Glaswegian police officer speaking in a thick accent, parked on a double yellow line in a small Scottish town",
"seconds": 4,
"resolution": "standard",
"aspect_ratio": "portrait"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 생성할 비디오에 대한 텍스트 설명 |
seconds | integer | No | 4 | 비디오 길이 초 4812 |
resolution | string | No | standard | 해상도 품질. standard는 720p (가로 1280x720, 세로 720x1280), high는 1024p (가로 1792x1024, 세로 1024x1792) standardhigh |
aspect_ratio | string | No | portrait | 비디오 화면 비율 portraitlandscape |
input_reference | string | No | - | 비디오의 첫 프레임으로 사용할 선택적 이미지. 비디오와 동일한 화면 비율이어야 함 |
openai_api_key | string | No | - | 선택 사항: 본인의 OpenAI API 키 (사용 시 OpenAI에서 직접 과금됨). 어느 쪽이든 본 플랫폼의 크레딧 과금은 동일합니다 |
이 모델의 input_reference 파라미터에 파일을 전달하는 방법은 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=openai/sora-2-pro" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:input_reference=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "openai/sora-2-pro",
"input": {
"prompt": "your prompt here",
"input_reference": "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로도 제공 |
네이티브로 생성된 음성과 앰비언스가 담긴 standard 등급 세로 클립
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "openai/sora-2-pro",
"input": {
"prompt": "Scottish Highland coo with ginger fur getting a parking ticket from a Glaswegian police officer speaking in a thick accent, parked on a double yellow line in a small Scottish town",
"seconds": 4,
"resolution": "standard",
"aspect_ratio": "portrait"
}
}'최종 납품용 high 등급 1024p 가로 렌더
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "openai/sora-2-pro",
"input": {
"prompt": "Cinematic drone shot gliding over a mist-covered alpine lake at sunrise, golden light breaking through pine forests, gentle wind and distant birdsong",
"seconds": 8,
"resolution": "high",
"aspect_ratio": "landscape"
}
}'