GPT-5.4 및 GPT-5.4 Mini가 단종되었습니다 · 사용 가능한 다른 모델로 전환하세요
모든 모델
Alibaba · 미디어 API

Wan 3.0 Video Prime API

Wan 3.0 Video Prime은 동일한 Wan 3.0 모델의 고속 버전입니다. 작업 종류, 참조 입력, 오디오가 모두 같고 엔드투엔드 소요 시간이 크게 줄어듭니다.

모델 ID
wan3.0-video-prime
공급자
Alibaba
유형
AI 영상
출력 1초당
$0.078–$0.38
마지막 확인
2026-09-14

01

어울리는 용도

지연 시간이나 처리량이 중요할 때 Prime을 쓰세요. 5초 720P 클립이 약 1분에 돌아오고 표준 버전은 약 2분 걸립니다. 초당 $0.078~$0.38을 예산에 넣으세요.

02

할 수 있는 일

텍스트를 비디오로

wan3.0-video-prime

텍스트 프롬프트로 짧은 영상 클립을 생성합니다.

이미지를 비디오로

wan3.0-video-prime

정지 이미지를 짧은 영상 클립으로 움직입니다.

참고영상

wan3.0-video-prime

참조 영상으로 생성 클립을 유도합니다.

03

호출 방법

미디어 모델은 비동기로 동작합니다. 작업을 만들고 완료될 때까지 폴링한 뒤 서명된 에셋 URL을 내려받으세요.

생성, 폴링, 다운로드
# 1. Create the job. 202 Accepted; the body carries the task id,
#    the pre-charged price, and a poll_url. Reuse one Idempotency-Key
#    across retries so a timeout never starts a second paid job.
curl --fail-with-body https://api.omniakey.com/v1/media/tasks \
  -H "Authorization: Bearer $OMNIAKEY_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: wan3.0-video-prime-001" \
  -d '{
    "model": "wan3.0-video-prime",
    "type": "video",
    "operation": "text_to_video",
    "input": {"prompt": "a paper boat on a quiet lake at sunset"},
    "parameters": {"duration": 6, "resolution": "720p"}
  }'

# 2. The same model id and the same poll loop serve the other operations:
#      image_to_video         media[] type "first_frame"
#      reference_to_video     media[] type "reference_image"
#    Reference media travel alongside the prompt:
#    {"prompt": "...", "media": [{"type": "first_frame", "url": "https://example.com/first-frame.png"}]}
#    A public HTTPS URL or a base64 data URI both work.

# 3. Poll GET /v1/media/tasks/{id} until status is
#    succeeded | failed | canceled. Progress carries percent and stage.
curl --fail-with-body https://api.omniakey.com/v1/media/tasks/TASK_ID \
  -H "Authorization: Bearer $OMNIAKEY_API_KEY"

# 4. Download assets[0].url before expires_at, or poll again for a
#    fresh signed URL. Failed and canceled jobs are refunded.
curl -sS -o out.mp4 "$(jq -r '.assets[0].url' result.json)"

04

가격

비디오 작업은 토큰이 아니라 생성된 출력 초당 과금됩니다. 실패하거나 취소된 작업은 자동으로 환불됩니다.

출력 1초당

$0.078–$0.38초당

480P
$0.078초당
720P
$0.18초당
1080P
$0.38초당

Alibaba의 다른 모델

자주 묻는 질문

OmniaKey에서 Wan 3.0 Video Prime을(를) 어떻게 호출하나요?

모델 id, type "video", operation "text_to_video"와 함께 /v1/media/tasks로 POST하세요. 첫 프레임에서 만들 때는 operation을 "image_to_video"로 바꾸고 input.media[](type은 "first_frame")에 넣습니다. 재시도 시 같은 Idempotency-Key를 쓰면 타임아웃으로 두 번째 유료 작업이 생기지 않습니다.

Wan 3.0 Video Prime 비용은 얼마인가요?

Wan 3.0 Video Prime의 요금은 $0.078–$0.38 초당이며, 생성된 비디오 길이에 따라 과금됩니다. 생성 시 요청한 길이만큼 선불 잔액에서 미리 차감되며, 실패하거나 취소된 작업은 자동으로 환불됩니다.

왜 API가 비디오 대신 작업 id를 반환하나요?

비디오 렌더링은 1분에서 몇 분까지 걸리므로 OmniaKey는 모든 비디오 경로를 하나의 비동기 흐름으로 처리합니다. 상태가 succeeded가 될 때까지 GET /v1/media/tasks/{id}를 폴링한 뒤 서명된 에셋 URL을 읽으세요.

Wan 3.0 Video Prime API — 비동기 비디오 생성 · OmniaKey