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

# Release 목록

> 작성자용 버전 이력(build id와 yanked 플래그 포함).

**`GET`** `https://api-datahub.octoparse.com/v1/data-apps/{app_id}/releases`

인증: API 키 필요(`Authorization: Bearer <API Key>`). App 작성자만. 그 외 `404`.

작성자용 Release 이력(`build_id`·`yanked` 포함. 공개 측은 <a href="/docs/ko/datahub/api/reference/discovery/list-data-app-versions">App 버전 이력</a>). 최신순. `latest`는 미 yank 최대 버전.

## 요청

### 경로 파라미터

<ParamField path="app_id" type="string" required>
  App 참조.
</ParamField>

### 요청 예시

```bash theme={null}
curl \
  -H "Authorization: Bearer $OCTOPARSE_API_KEY" \
  "https://api-datahub.octoparse.com/v1/data-apps/carol/reviews-query/releases"
```

## 응답

### 200 성공

```json theme={null}
{
  "data": {
    "items": [
      {
        "version": "0.1.0",
        "build_id": "bld_a583f440a0ab",
        "yanked": false,
        "latest": true,
        "published_at": "2026-09-15T07:45:38.633930+00:00"
      }
    ]
  }
}
```

페이로드는 `data`로 감쌉니다. 필드:

<ResponseField name="items" type="object[]">
  버전 목록.

  <Expandable title="fields">
    <ResponseField name="version" type="string" required>
      버전 번호.
    </ResponseField>

    <ResponseField name="build_id" type="string" required>
      대응 Build.
    </ResponseField>

    <ResponseField name="yanked" type="boolean">
      이 버전 yank 여부.
    </ResponseField>

    <ResponseField name="latest" type="boolean">
      최신 버전 여부.
    </ResponseField>

    <ResponseField name="published_at" type="string">
      게시 시각.
    </ResponseField>
  </Expandable>
</ResponseField>

### 오류

| HTTP | `code`         | `category`  | 설명              |
| ---- | -------------- | ----------- | --------------- |
| 401  | `unauthorized` | `forbidden` | API 키 누락 또는 무효. |

오류 응답은 `{"error": {code, category, message, retryable}}`입니다. <a href="/docs/ko/datahub/api/reference/introduction#errors">오류</a> 참고.

## 클라이언트 라이브러리

Python / JavaScript SDK는 아직 이 엔드포인트를 감싸지 않습니다. REST를 직접 호출하세요.
