Skip to main content
OpenAI느림울트라

OpenAI Sora 2 Pro

OpenAI의 가장 진보한 동기화 오디오 비디오 생성 모델입니다. Sora 2의 프리미엄 등급으로 더 높은 충실도와 최대 1024p 해상도, 레퍼런스 프레임을 통한 이미지-비디오를 지원합니다.

2790 크레딧
standard(720p) 4초 기준(기본값) — 초당 과금: standard 698/초, high(1024p) 1163/초, 길이는 4/8/12초
네이티브 동기화 오디오를 갖춘 OpenAI의 가장 진보한 비디오 모델
Sora 2의 프리미엄 등급 — 더 높은 충실도와 디테일
2단계 해상도: standard(720p), high(1024p)
input_reference 첫 프레임을 통한 이미지-비디오
세로·가로 출력, 4/8/12초 길이 선택

지금 바로 실행해보세요

콘솔의 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": "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"
  }
}'

파라미터

파라미터타입필수기본값설명
promptstringYes-생성할 비디오에 대한 텍스트 설명
secondsintegerNo4비디오 길이 초
4812
resolutionstringNostandard해상도 품질. standard는 720p (가로 1280x720, 세로 720x1280), high는 1024p (가로 1792x1024, 세로 1024x1792)
standardhigh
aspect_ratiostringNoportrait비디오 화면 비율
portraitlandscape
input_referencestringNo-비디오의 첫 프레임으로 사용할 선택적 이미지. 비디오와 동일한 화면 비율이어야 함
openai_api_keystringNo-선택 사항: 본인의 OpenAI API 키 (사용 시 OpenAI에서 직접 과금됨). 어느 쪽이든 본 플랫폼의 크레딧 과금은 동일합니다

파일 입력 방법

이 모델의 input_reference 파라미터에 파일을 전달하는 방법은 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=openai/sora-2-pro" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:input_reference=@your_file.png"

이미지 URL 전달

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

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

공통 파라미터

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

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

팁 & 모범 사례

1high 해상도(1024p)는 standard의 1.67배(750/초 vs 450/초)입니다 — standard로 반복 작업하고 최종 렌더에만 high를 사용하세요
2길이는 4, 8, 12초만 가능합니다. 프롬프트 테스트에는 4초 standard 클립(1800 크레딧)이 가장 저렴합니다
3aspect_ratio 기본값은 portrait(세로)입니다 — 와이드스크린 콘텐츠는 landscape를 명시하세요
4input_reference는 비디오와 화면 비율이 일치해야 하므로 목표 방향에 맞춰 이미지를 먼저 준비하세요
5본인의 openai_api_key를 입력하면 업스트림 비용이 OpenAI로 직접 청구되지만, 본 플랫폼의 크레딧 과금은 변하지 않습니다

사용 사례

동기화된 대사·사운드가 들어간 프리미엄 마케팅·광고 푸티지
일관된 오디오 디자인의 사실적인 물리 기반 장면
브랜드 캠페인용 고해상도(1024p) 히어로 샷
자연스러운 음성과 앰비언스가 담긴 세로형 숏폼 콘텐츠
키 아트 프레임을 오디오가 있는 완성 클립으로 애니메이션