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

# Cover 편곡

> Flow Music 곡 전체 스타일 편곡(커버 / 스타일 변경), strength로 편집 강도를 제어합니다

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url https://api.apimart.ai/v1/music/generations/coverFlowMusic \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    --data '{
      "model": "flowmusic",
      "clip_id": "abc123-def456",
      "instruction": "이 곡을 재즈 스타일로 편곡",
      "strength": 0.5
    }'
  ```

  ```python Python theme={null}
  import requests

  url = "https://api.apimart.ai/v1/music/generations/coverFlowMusic"

  payload = {
      "model": "flowmusic",
      "clip_id": "abc123-def456",
      "instruction": "이 곡을 재즈 스타일로 편곡",
      "strength": 0.5
  }

  headers = {
      "Authorization": "Bearer <token>",
      "Content-Type": "application/json"
  }

  response = requests.post(url, json=payload, headers=headers)

  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  const url = "https://api.apimart.ai/v1/music/generations/coverFlowMusic";

  const payload = {
    model: "flowmusic",
    clip_id: "abc123-def456",
    instruction: "이 곡을 재즈 스타일로 편곡",
    strength: 0.5
  };

  const headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
  };

  fetch(url, {
    method: "POST",
    headers: headers,
    body: JSON.stringify(payload)
  })
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "code": 200,
    "data": [
      {
        "status": "submitted",
        "task_id": "task_01KWXVD0E653EZ9FWD2SD9NNB6"
      }
    ]
  }
  ```

  ```json 400 theme={null}
  {
    "error": {
      "message": "strength must be between 0 and 1",
      "type": "invalid_request",
      "param": "",
      "code": "invalid_request"
    }
  }
  ```

  ```json 403 theme={null}
  {
    "error": {
      "message": "잔액이 부족합니다",
      "type": "invalid_request",
      "param": "",
      "code": "quota_not_enough"
    }
  }
  ```

  ```json 429 theme={null}
  {
    "error": {
      "message": "현재 그룹 용량이 포화 상태입니다. 잠시 후 다시 시도해 주세요",
      "type": "rate_limit_error",
      "param": "",
      "code": "rate_limit_error"
    }
  }
  ```
</ResponseExample>

## 인증

<ParamField header="Authorization" type="string" required>
  모든 API는 Bearer Token 인증이 필요합니다

  API Key 발급:

  [API Key 관리 페이지](https://apimart.ai/keys)에서 API Key를 발급받으세요

  사용 시 요청 헤더에 다음을 추가하세요:

  ```
  Authorization: Bearer YOUR_API_KEY
  ```
</ParamField>

## 요청 파라미터

<ParamField body="model" type="string" required>
  모델 이름, **`"flowmusic"` 고정값**(대소문자 구분 없음)
</ParamField>

<ParamField body="clip_id" type="string" required>
  원본 음악의 고유 식별자, 성공한 작업의 `result.music[].clip_id`에서 가져옵니다
</ParamField>

<ParamField body="instruction" type="string" required>
  Cover 편집 지시

  예시: `"이 곡을 재즈 스타일로 편곡"`
</ParamField>

<ParamField body="strength" type="number" required>
  편집 강도

  값 범위: `0` \~ `1`, 클수록 변화가 커집니다
</ParamField>

<ParamField body="title" type="string">
  Cover 후 음악 제목
</ParamField>

<ParamField body="seed" type="string">
  결과 재현에 사용하는 랜덤 시드
</ParamField>

## 응답

<ResponseField name="code" type="integer">
  응답 상태 코드, 성공 시 200
</ResponseField>

<ResponseField name="data" type="array">
  반환 데이터 배열

  <Expandable title="배열 요소">
    <ResponseField name="status" type="string">
      작업 상태, 최초 제출 시 `submitted`
    </ResponseField>

    <ResponseField name="task_id" type="string">
      작업 고유 식별자, 작업 상태와 결과 조회에 사용됩니다
    </ResponseField>
  </Expandable>
</ResponseField>

## 사용 시나리오

### 시나리오 1: 곡 전체를 재즈 스타일로 편곡

```json theme={null}
{
  "model": "flowmusic",
  "clip_id": "abc123-def456",
  "instruction": "이 곡을 재즈 스타일로 편곡",
  "strength": 0.5
}
```

### 시나리오 2: 외부 오디오를 가져와 편곡

먼저 [오디오 업로드](./upload-audio)로 외부 오디오를 가져와 clip\_id를 발급받은 후 Cover를 수행합니다:

```json theme={null}
{
  "model": "flowmusic",
  "clip_id": "1db3a20f-4ddc-44e8-8c9c-6c9093c16ffe",
  "instruction": "재즈 스타일로 변경",
  "strength": 0.6
}
```

<Note>
  **작업 결과 조회**

  Cover 편곡은 비동기 작업으로, 제출 후 `task_id`가 반환됩니다. [작업 상태 조회](./query) API로 생성 진행 상황과 결과를 확인하세요. Cover 결과물은 **새로운** `clip_id`이며, 이후 작업에는 새 clip\_id를 사용하세요.
</Note>

## 작업 완료 결과 예시

**조회 응답 예시**(`GET /v1/music/tasks/{task_id}`):

```json theme={null}
{
  "code": 200,
  "data": {
    "id": "task_01KWXVD0E653EZ9FWD2SD9NNB6",
    "status": "completed",
    "progress": 100,
    "created": 1783413244,
    "completed": 1783413315,
    "actual_time": 71,
    "cost": 0.048,
    "credits_cost": 0.48,
    "result": {
      "music": [
        {
          "clip_id": "ef3d804e-fa97-402f-ba17-4ff08270159b",
          "title": "Untitled (Cover)",
          "duration_seconds": "178.03733333",
          "create_time": "2026-07-07T08:34:58.112190Z",
          "lyrics": "[Verse 1]\nWaking up to the morning light,\n...",
          "lyrics_id": "c302d603-81b6-552f-8122-e512928d6aa1",
          "lyrics_timing_markers": [[10, 12], [212, 36]],
          "audio_url": "https://cdn.apimart.ai/audio/flowmusic_ef3d804e.m4a",
          "wav_url": "https://cdn.apimart.ai/audio/flowmusic_ef3d804e.wav",
          "image_url": "https://cdn.apimart.ai/image/flowmusic_ef3d804e_cover.jpg"
        }
      ]
    }
  }
}
```
