API 퀵스타트 / 인간 + AGENT 지원
하나의 비동기 API 플로우로 Seedance 2.5를 연동하세요.
T2V, I2V, R2V workflow ID를 선택하고 요청을 구성해 비동기 작업을 제출한 뒤 짧은 테스트부터 시작하세요.
상태공식 API 출시됨
Confirmed · OFFICIAL API Official developer API live
The official developer API is live at this page publication, and EvoLink launches its integrated route on the same publication date.
Official pricing docs → Confirmed · EVOLINK Live on EvoLink · API key access available
The upstream official API and EvoLink integration are live for the August 7 publication. Use the three workflow-specific EvoLink model IDs and verify the current price shown in the EvoLink console before production traffic.
EvoLink에서 Seedance 2.5 보기 →Text to video
seedance-2.5-text-to-videoLive EvoLink model ID for prompt-only text-to-video requests.Image to video
seedance-2.5-image-to-videoLive EvoLink model ID for first-frame or first/last-frame image-to-video requests.Reference to video
seedance-2.5-reference-to-videoLive EvoLink model ID for multimodal reference-to-video, editing, and extension workflows.코드CURL + NODE
curl https://api.evolink.ai/v1/videos/generations \
-H "Authorization: Bearer $EVOLINK_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance-2.5-text-to-video",
"prompt": "A clean product shot, slow dolly in, soft daylight",
"duration": 5,
"quality": "720p",
"generate_audio": true
}' const resp = await fetch("https://api.evolink.ai/v1/videos/generations", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.EVOLINK_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
// Default T2V route. Switch to the I2V or R2V ID for those workflows.
model: process.env.SEEDANCE_MODEL || "seedance-2.5-text-to-video",
prompt,
duration: 5,
quality: "720p",
generate_audio: true,
}),
});
const job = await resp.json();
// Current documented EvoLink task-query pattern:
const task = await fetch(`https://api.evolink.ai/v1/tasks/${job.id}`, {
headers: { Authorization: `Bearer ${process.env.EVOLINK_API_KEY}` },
}).then((r) => r.json()); 파라미터요청 본문
| 필드 | 타입 | 필수 | 설명 |
|---|---|---|---|
| model | string | 필수 | 출시된 T2V, I2V, R2V EvoLink model ID 중 하나를 선택하세요. quickstart 기본값은 T2V입니다. |
| prompt | string | 필수 | 주체, 움직임, 스타일, 제약을 담은 샷 설명. |
| duration / quality | provider fields | 필수 | 4~30초와 480p/720p를 사용하세요. 4K는 출시 API 티어가 아닙니다. |
| generate_audio / content_filter | provider fields | 선택 | 선택한 workflow가 지원할 때만 사용하고, 확대 전에 콘솔의 현재 가격을 확인하세요. |
| image_urls / video_urls / audio_urls | provider fields | 선택 | 참조 모드는 이미지 30개, 영상 10개, 오디오 10개를 지원합니다. |
| callback_url | provider field | 선택 | GET /v1/tasks/{task_id}를 polling하고, 통합이 지원하면 callback을 사용하세요. |
기계 판독용 schema: /openapi.json / Agent 가이드: /agent.md
핸드오프마지막 단계
EvoLink 경로가 출시되었습니다. 키를 만들고 짧은 테스트를 실행하세요.
EVOLINK_API_KEY를 설정하고 workflow ID를 선택한 뒤 프로덕션 확대 전에 출력과 콘솔의 현재 가격을 확인하세요.