> ## 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.

# App 버전 이력

> 게시 버전 목록. 최신순.

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

인증: 선택. API 키가 있으면 로그인 필요 뷰 App도 보일 수 있습니다.

게시된 전체 버전. 최신순. 상세·실행 기본은 최신. `version`으로 과거 Release 고정.

yank된 버전도 이력에 남고 플래그. latest 해석 대상 제외·신규 실행 거부. 기존 결과 데이터는 읽을 수 있음.

## 요청

### 경로 파라미터

<ParamField path="app_id" type="string" required>
  App 참조: `app_<hex>` 또는 `<namespace>/<app_name>`.
</ParamField>

### 요청 예시

```bash theme={null}
curl   -H "Authorization: Bearer $OCTOPARSE_API_KEY"   "https://api-datahub.octoparse.com/v1/data-apps/carol/probe-b/versions"
```

## 응답

### 200 성공

```json theme={null}
{
  "data": {
    "items": [
      {
        "version": "0.2.0",
        "yanked": false,
        "created_at": "2026-09-01T08:00:00+00:00",
        "build_id": "bld_123"
      }
    ]
  }
}
```

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

<ResponseField name="items" type="array" required>
  버전 목록. 최신순.

  <Expandable title="item">
    <ResponseField name="version" type="string" required>
      시맨틱 버전 문자열.
    </ResponseField>

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

    <ResponseField name="created_at" type="string" required>
      게시 시각(ISO 8601).
    </ResponseField>

    <ResponseField name="build_id" type="string">
      원본 Build id(있을 때).
    </ResponseField>
  </Expandable>
</ResponseField>

### 오류

| HTTP | `code`          | `category`  | 설명              |
| ---- | --------------- | ----------- | --------------- |
| 401  | `unauthorized`  | `forbidden` | API 키 누락 또는 무효. |
| 404  | `app-not-found` | `not_found` | App 없거나 비가시.    |

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

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

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