오디오 동기화 지원이 포함된 텍스트-비디오 모델로, 자연스러운 모션과 함께 텍스트 프롬프트로부터 고품질 비디오를 생성합니다.
이 모델의 사용법을 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": "wan-video/wan-2.5-t2v",
"input": {
"prompt": "A majestic eagle soaring over snow-capped mountains, dramatic aerial perspective, golden sunrise, National Geographic cinematography",
"aspect_ratio": "16:9",
"duration": 5
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 생성할 비디오에 대한 텍스트 설명 |
aspect_ratio | string | No | 16:9 | 출력 화면 비율 16:99:161:1 |
duration | integer | No | 5 | 비디오 길이 초 |
seed | integer | No | - | 재현성을 위한 랜덤 시드 |
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로도 제공 |
텍스트로 생성한 시네마틱 자연 비디오
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "wan-video/wan-2.5-t2v",
"input": {
"prompt": "A majestic eagle soaring over snow-capped mountains, dramatic aerial perspective, golden sunrise, National Geographic cinematography",
"aspect_ratio": "16:9",
"duration": 5
}
}'다이나믹한 도시 장면 비디오
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "wan-video/wan-2.5-t2v",
"input": {
"prompt": "Busy coffee shop interior with barista preparing latte art, warm ambient lighting, steam rising from cup, cozy atmosphere",
"aspect_ratio": "16:9",
"duration": 5
}
}'POST /v1/predictions