PixVerse의 플래그십 비디오 생성 모델입니다. 동기화 오디오, 장면 전환이 있는 멀티샷 시퀀스, 놀라운 물리 표현, 정밀한 카메라 제어를 갖춘 시네마틱 비디오를 최대 1080p로 생성합니다.
콘솔의 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": "pixverse/pixverse-v6",
"input": {
"prompt": "E-commerce brand film for natural pure cotton loungewear, Japanese minimalist lifestyle aesthetic. Shot 1 (0-4s): warm morning sunlight through floor-to-ceiling windows, a woman in off-white loungewear holds a mug by the window, slow push-in. Shot 2 (4-8s): close-up of fabric texture as a breeze sways the hem, sunlight through the cotton. Shot 3 (8-12s): wide tracking shot as she walks toward a raw wood shelf, soft light and shadow. Shot 4 (12-15s): she sits gazing out the window, negative-space composition, slow pull out and fade. Sound: distant birdsong, fabric rustle, soothing acoustic guitar",
"quality": "1080p",
"duration": 15,
"aspect_ratio": "16:9",
"generate_audio_switch": true,
"generate_multi_clip_switch": true
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 비디오 생성을 위한 텍스트 프롬프트 |
image | string | No | - | 비디오의 첫 프레임으로 사용할 이미지 |
last_frame_image | string | No | - | 첫 이미지에서 이 마지막 이미지로 전환되는 비디오 생성 (image와 함께 사용해야 함) |
quality | string | No | 540p | 비디오 해상도. 높은 해상도일수록 초당 비용 증가 360p540p720p1080p |
duration | integer | No | 5 | 비디오 길이 초. 과금은 초당 계산 581015 |
aspect_ratio | string | No | 16:9 | 화면 비율. 텍스트-비디오에서만 사용되며 image 또는 last_frame_image 제공 시 무시됨 16:99:161:1 |
generate_audio_switch | boolean | No | false | 배경음악·효과음·캐릭터 대사를 포함한 AI 오디오 생성 활성화 |
generate_multi_clip_switch | boolean | No | false | 장면 전환이 있는 시네마틱 시퀀스용 멀티샷 생성 활성화. 텍스트-비디오·이미지-비디오 전용 (전환 모드에서는 불가) |
negative_prompt | string | No | - | 비디오에서 배제할 요소를 지정하는 네거티브 프롬프트 |
seed | integer | No | - | 랜덤 시드. 재현 가능한 생성을 위해 설정 |
이 모델의 imagelast_frame_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=pixverse/pixverse-v6" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "pixverse/pixverse-v6",
"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로도 제공 |
동기화 오디오를 포함한 최상위 등급의 15초 멀티샷 브랜드 필름
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "pixverse/pixverse-v6",
"input": {
"prompt": "E-commerce brand film for natural pure cotton loungewear, Japanese minimalist lifestyle aesthetic. Shot 1 (0-4s): warm morning sunlight through floor-to-ceiling windows, a woman in off-white loungewear holds a mug by the window, slow push-in. Shot 2 (4-8s): close-up of fabric texture as a breeze sways the hem, sunlight through the cotton. Shot 3 (8-12s): wide tracking shot as she walks toward a raw wood shelf, soft light and shadow. Shot 4 (12-15s): she sits gazing out the window, negative-space composition, slow pull out and fade. Sound: distant birdsong, fabric rustle, soothing acoustic guitar",
"quality": "1080p",
"duration": 15,
"aspect_ratio": "16:9",
"generate_audio_switch": true,
"generate_multi_clip_switch": true
}
}'빠르고 저렴한 프롬프트 반복 작업을 위한 기본 등급
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "pixverse/pixverse-v6",
"input": {
"prompt": "A glass of iced tea on a wooden café table, condensation dripping, soft afternoon light, gentle camera orbit",
"quality": "540p",
"duration": 5,
"aspect_ratio": "16:9",
"generate_audio_switch": false
}
}'