> ## Documentation Index
> Fetch the complete documentation index at: https://docs.comfy.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Comfy Router로 Kling Video O1 사용하기

> Comfy Router를 통해 kling/kling-video-o1 호출: endpoint, 요청 형태, 그리고 Router가 반환하는 응답.

`kling/kling-video-o1`의 API 레퍼런스이며, Kling에서 Comfy Router를 통해 제공됩니다.

## 빠른 시작

[Comfy 워크스페이스](https://platform.comfy.org/profile/api-keys)에서 키를 생성하고 `COMFY_API_KEY`로 내보내세요. Python과 TypeScript 스니펫은 Comfy SDK(`pip install comfy-sdk`, `npm install @comfyorg/sdk`)를 사용하며, cURL 스니펫은 동일한 호출을 원시 HTTP로 수행합니다.

**모델 ID:** `kling/kling-video-o1`

**엔드포인트:** `POST https://api.comfy.org/v2/models/kling/kling-video-o1`

<Tabs>
  <Tab title="Wait for the result">
    <CodeGroup>
      ```python Python theme={null}
      from comfy_sdk import Comfy

      # Reads COMFY_API_KEY from the environment.
      # The SDK automatically creates an idempotency key and reuses it for automatic retries.
      with Comfy() as client:
          result = client.models.run(
              "kling/kling-video-o1",
              {
                  "aspect_ratio": "16:9",
                  "duration": "5",
                  "mode": "pro",
                  "prompt": "A paper boat drifting down a rain-soaked street at dusk.",
              },
          )

      print(result)
      ```

      ```typescript TypeScript theme={null}
      import { comfy } from "@comfyorg/sdk";

      // Reads COMFY_API_KEY from the environment.
      // The SDK automatically creates an idempotency key and reuses it for automatic retries.
      const { data } = await comfy.models.run("kling/kling-video-o1", {
        aspect_ratio: "16:9",
        duration: "5",
        mode: "pro",
        prompt: "A paper boat drifting down a rain-soaked street at dusk.",
      });

      console.log(data);
      ```

      ```bash cURL theme={null}
      curl https://api.comfy.org/v2/models/kling/kling-video-o1 \
        -H "X-API-Key: $COMFY_API_KEY" \
        -H "Idempotency-Key: $(uuidgen)" \
        -H "Content-Type: application/json" \
        -d "{\"aspect_ratio\": \"16:9\", \"duration\": \"5\", \"mode\": \"pro\", \"prompt\": \"A paper boat drifting down a rain-soaked street at dusk.\"}"
      ```
    </CodeGroup>
  </Tab>

  <Tab title="Queue and collect later">
    <CodeGroup>
      ```python Python theme={null}
      from comfy_sdk import Comfy

      # Reads COMFY_API_KEY from the environment.
      # Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
      with Comfy() as client:
          handle = client.models.submit(
              "kling/kling-video-o1",
              {
                  "aspect_ratio": "16:9",
                  "duration": "5",
                  "mode": "pro",
                  "prompt": "A paper boat drifting down a rain-soaked street at dusk.",
              },
          )
          print("request_id:", handle.request_id)  # with the model ID, all another process needs

          # Poll until the request completes, waiting the Retry-After the server names.
          for update in handle.iter_events():
              print(update.status, update.queue_position)

          # The provider's own payload, the same value models.run() returns.
          # A request that failed or was cancelled raises the typed Router error here.
          result = handle.get()

      print(result)
      ```

      ```typescript TypeScript theme={null}
      import { comfy } from "@comfyorg/sdk";

      // Reads COMFY_API_KEY from the environment.
      // Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
      const handle = await comfy.models.submit("kling/kling-video-o1", {
        aspect_ratio: "16:9",
        duration: "5",
        mode: "pro",
        prompt: "A paper boat drifting down a rain-soaked street at dusk.",
      });
      console.log("requestId:", handle.requestId); // with the model ID, all another process needs

      // Poll until the request completes, waiting the Retry-After the server names.
      for await (const update of handle.events()) {
        console.log(update.status, update.queuePosition);
      }

      // The same result models.run() returns. A request that failed or was cancelled rejects here.
      const result = await handle.get();

      console.log(result.data);
      ```

      ```bash cURL theme={null}
      # 1. Submit. Router answers 201 with request_id, status_url, response_url and cancel_url.
      curl https://api.comfy.org/v2/models/kling/kling-video-o1/requests \
        -H "X-API-Key: $COMFY_API_KEY" \
        -H "Idempotency-Key: $(uuidgen)" \
        -H "Content-Type: application/json" \
        -d "{\"aspect_ratio\": \"16:9\", \"duration\": \"5\", \"mode\": \"pro\", \"prompt\": \"A paper boat drifting down a rain-soaked street at dusk.\"}"

      # 2. Poll until status is COMPLETED, waiting the Retry-After seconds each response names.
      REQUEST_ID="<request_id from the 201 body>"
      curl -i https://api.comfy.org/v2/models/kling/kling-video-o1/requests/$REQUEST_ID/status \
        -H "X-API-Key: $COMFY_API_KEY"

      # 3. Collect. 200 with the model's native output, 202 with the status body while it is still running.
      curl https://api.comfy.org/v2/models/kling/kling-video-o1/requests/$REQUEST_ID \
        -H "X-API-Key: $COMFY_API_KEY"
      ```
    </CodeGroup>
  </Tab>
</Tabs>

## 스키마

### 입력

<ParamField body="aspect_ratio" type="string">
  생성된 비디오 프레임의 가로세로 비율(너비:높이). 첫 프레임 참조 또는 비디오 편집 기능을 사용하지 않을 때 필수입니다.

  사용 가능한 값: `16:9`, `9:16`, `1:1`
</ParamField>

<ParamField body="callback_url" type="string (uri)">
  이 작업 결과에 대한 콜백 알림 주소입니다. 설정하면 작업 상태가 변경될 때 서버가 능동적으로 알림을 보냅니다.

  형식: `uri`
</ParamField>

<ParamField body="duration" type="string" default="&#x22;5&#x22;">
  비디오 길이(초)입니다. 비디오 편집 기능(refer\_type: base)을 사용하는 경우 출력 재생 시간은 입력 비디오와 동일하며 이 파라미터는 무효입니다.

  사용 가능한 값: `3`, `4`, `5`, `6`, `7`, `8`, `9`, `10`, `11`, `12`, `13`, `14`, `15`
</ParamField>

<ParamField body="element_list" type="object[]">
  element ID 구성을 기반으로 한 참조 요소 목록입니다.
</ParamField>

<ParamField body="element_list[].element_id" type="integer" required>
  요소 ID

  형식: `int64`
</ParamField>

<ParamField body="external_task_id" type="string">
  사용자 정의 작업 ID입니다. 단일 사용자 계정 내에서 고유해야 합니다.
</ParamField>

<ParamField body="image_list" type="object[]">
  참조 이미지 목록입니다. 요소, 장면, 스타일 등의 참조 이미지를 포함할 수 있으며, 첫 프레임 또는 마지막 프레임으로 사용하여 비디오를 생성할 수도 있습니다.
</ParamField>

<ParamField body="image_list[].image_url" type="string">
  이미지 Base64 인코딩 또는 이미지 URL(접근 가능해야 함)입니다. 지원 형식은 .jpg/.jpeg/.png입니다. 파일 크기는 10MB를 초과할 수 없습니다. 너비와 높이 치수는 300px 이상이어야 하며, 가로세로 비율은 1:2.5 \~ 2.5:1 사이여야 합니다.
</ParamField>

<ParamField body="image_list[].type" type="string">
  이미지가 첫 프레임인지 마지막 프레임인지 여부입니다. first\_frame은 첫 프레임, end\_frame은 마지막 프레임입니다. 현재 마지막 프레임만 사용하는 것은 지원되지 않습니다.

  사용 가능한 값: `first_frame`, `end_frame`
</ParamField>

<ParamField body="mode" type="string" default="&#x22;pro&#x22;">
  비디오 생성 모드입니다. std: 표준 모드로 720P 비디오를 생성하며 비용 효율적입니다. pro: 전문가 모드로 1080P 비디오를 생성하며 더 높은 품질의 비디오를 출력합니다.

  사용 가능한 값: `pro`, `std`
</ParamField>

<ParamField body="model_name" type="string">
  모델 이름입니다. Comfy Router를 사용할 때는 생략하거나 null을 전송하세요. 모델은 요청 경로에 의해 선택됩니다. 이름을 제공하는 경우 해당 경로와 일치해야 합니다.
</ParamField>

<ParamField body="multi_prompt" type="object[]">
  프롬프트 및 재생 시간 등 각 스토리보드에 대한 정보입니다. 최대 6개의 스토리보드를 지원하며 최소 1개가 필요합니다. multi\_shot이 true이고 shot\_type이 customize일 때 필수입니다.
</ParamField>

<ParamField body="multi_prompt[].duration" type="string">
  이 스토리보드의 재생 시간(초)입니다. 전체 작업 재생 시간을 초과할 수 없으며 1보다 작을 수 없습니다. 모든 스토리보드 재생 시간의 합은 전체 작업 재생 시간과 같습니다.
</ParamField>

<ParamField body="multi_prompt[].index" type="integer">
  샷 순서 번호
</ParamField>

<ParamField body="multi_prompt[].prompt" type="string">
  이 스토리보드의 프롬프트 단어입니다. 최대 길이는 512자입니다.
</ParamField>

<ParamField body="multi_shot" type="boolean" default="false">
  멀티 샷 비디오를 생성할지 여부입니다. true이면 prompt 파라미터가 무효입니다. false이면 shot\_type 및 multi\_prompt 파라미터가 무효입니다.
</ParamField>

<ParamField body="prompt" type="string">
  텍스트 프롬프트 단어로, 긍정 및 부정 설명을 포함할 수 있습니다. 2,500자를 초과할 수 없습니다. \<\<\<>> 형식으로 요소, 이미지 또는 비디오를 지정할 수 있습니다. 예: \<\<element\_1>>, \<\<\<image\_1>>>, \<\<\<video\_1>>>.
</ParamField>

<ParamField body="shot_type" type="string">
  스토리보드 방식입니다. multi\_shot 파라미터가 true로 설정된 경우 필수입니다.

  사용 가능한 값: `customize`, `intelligence`
</ParamField>

<ParamField body="sound" type="string" default="&#x22;off&#x22;">
  비디오 생성 시 사운드를 동시에 생성할지 여부입니다.

  사용 가능한 값: `on`, `off`
</ParamField>

<ParamField body="video_list" type="object[]">
  참조 비디오 목록입니다. 기능 참조 비디오로 사용하거나 편집할 비디오로 사용할 수 있으며, 기본값은 편집할 비디오입니다.
</ParamField>

<ParamField body="video_list[].keep_original_sound" type="string">
  비디오 원본 사운드를 유지할지 여부입니다. yes는 유지, no는 유지를 하지 않음을 나타냅니다.

  사용 가능한 값: `yes`, `no`
</ParamField>

<ParamField body="video_list[].refer_type" type="string">
  참조 비디오 유형입니다. feature는 기능 참조 비디오, base는 편집할 비디오입니다.

  사용 가능한 값: `feature`, `base`
</ParamField>

<ParamField body="video_list[].video_url" type="string" required>
  업로드된 비디오의 URL입니다. .mp4/.mov 형식만 지원됩니다. 재생 시간은 3-10초 사이입니다. 해상도는 720px에서 2160px 사이여야 합니다. 24-60 fps의 프레임 레이트를 지원합니다. 비디오는 1개만 업로드할 수 있으며 크기는 200MB를 초과할 수 없습니다.
</ParamField>

<ParamField body="watermark_info" type="object">
  워터마크가 있는 결과를 동시에 생성할지 여부입니다. 현재 사용자 정의 워터마크는 지원되지 않습니다.
</ParamField>

<ParamField body="watermark_info.enabled" type="boolean">
  true는 워터마크 생성, false는 생성을 하지 않음을 나타냅니다.
</ParamField>

`GET /v2/models/kling/kling-video-o1/openapi.json`에서 Router가 제공하는 스키마에서 생성되었으며, 요청이 공급자에 도달하기 전에 호출을 검증하는 데 사용하는 것과 동일한 문서입니다.

### 출력

<ResponseField name="code" type="integer">
  오류 코드
</ResponseField>

<ResponseField name="data" type="object" />

<ResponseField name="data.created_at" type="integer">
  작업 생성 시간, 밀리초 단위의 Unix 타임스탬프
</ResponseField>

<ResponseField name="data.final_unit_deduction" type="string">
  작업의 차감 단위
</ResponseField>

<ResponseField name="data.task_id" type="string">
  작업 ID
</ResponseField>

<ResponseField name="data.task_info" type="object" />

<ResponseField name="data.task_info.external_task_id" type="string" />

<ResponseField name="data.task_result" type="object" />

<ResponseField name="data.task_result.videos" type="object[]" />

<ResponseField name="data.task_result.videos[].duration" type="string">
  비디오 총 재생 시간(초)
</ResponseField>

<ResponseField name="data.task_result.videos[].id" type="string">
  생성된 비디오 ID
</ResponseField>

<ResponseField name="data.task_result.videos[].url" type="string (uri)">
  생성된 비디오의 URL

  형식: `uri`
</ResponseField>

<ResponseField name="data.task_result.videos[].watermark_url" type="string (uri)">
  워터마크가 포함된 생성 비디오의 URL, 핫링크 보호 형식

  형식: `uri`
</ResponseField>

<ResponseField name="data.task_status" type="string">
  작업 상태

  가능한 값: `submitted`, `processing`, `succeed`, `failed`
</ResponseField>

<ResponseField name="data.task_status_msg" type="string">
  작업 상태 정보로, 작업 실패 시 실패 원인을 표시합니다
</ResponseField>

<ResponseField name="data.updated_at" type="integer">
  작업 업데이트 시간, 밀리초 단위의 Unix 타임스탬프
</ResponseField>

<ResponseField name="data.watermark_info" type="object" />

<ResponseField name="data.watermark_info.enabled" type="boolean" />

<ResponseField name="message" type="string">
  오류 메시지
</ResponseField>

<ResponseField name="request_id" type="string">
  요청 ID
</ResponseField>

## 예시

### 입력

```json theme={null}
{
  "aspect_ratio": "16:9",
  "duration": "5",
  "mode": "pro",
  "prompt": "A paper boat drifting down a rain-soaked street at dusk."
}
```

### 출력

```json theme={null}
{
  "code": 0,
  "data": {
    "created_at": 1798761600000,
    "task_id": "kling-task-1a2b3c4d5e6f",
    "task_result": {
      "videos": [
        {
          "duration": "5",
          "id": "kling-video-6f5e4d3c2b1a",
          "url": "https://example.invalid/kling/kling-v1/generated.mp4"
        }
      ]
    },
    "task_status": "succeed",
    "task_status_msg": "",
    "updated_at": 1798761840000
  },
  "message": "SUCCEED",
  "request_id": "9f2c1a04-7b6e-4d38-8a51-3c0e7d9b2f46"
}
```

## 배포 전 확인

SDK는 `Idempotency-Key`를 생성하고 자동 재시도에서 재사용합니다. 수동 재시도 시에는 원래 키를 재사용하세요. Router는 연결을 최대 10분간 유지할 수 있습니다.

요청이 실패하면 Router는 이유를 설명하는 `X-Comfy-Error-Type` 응답 헤더를 보냅니다. `422`는 Router가 프로바이더를 호출하기 전에 입력을 거부했음을 의미합니다. 생성된 에셋은 [결과 URL이 만료](/ko/development/comfy-router/reference#결과-에셋)될 수 있으므로 즉시 다운로드하세요.

<CardGroup cols={3}>
  <Card title="헤더" icon="list" href="/ko/development/comfy-router/quickstart">
    인증, 멱등성, 요청 ID, 오류 분류, 재시도 간격, 지출 한도.
  </Card>

  <Card title="Router API 사용" icon="code" href="/ko/development/comfy-router/quickstart">
    모델 검색, 유효성 검사 오류, 재시도, 과금.
  </Card>

  <Card title="제한 사항" icon="triangle-exclamation" href="/ko/development/comfy-router/limitations">
    Router가 현재 지원하지 않는 기능과 대체 방법.
  </Card>
</CardGroup>
