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

# Build 목록

> 모든 Build 스냅샷과 상태를 최신순 목록.

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

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

모든 Build 스냅샷의 상태(building / ready / failed, 최신순)와 실패 요약. 작성자 관점으로 확인됩니다: Release가 0개인 App도 표시됩니다. 작성자가 아니면 항상 `404`를 받습니다. Build 상태는 작성자 측 정보이며 외부에 존재를 알리지 않습니다.

## 요청

### 경로 파라미터

<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/builds"
```

## 응답

### 200 성공

```json theme={null}
{
  "data": {
    "items": [
      {
        "build_id": "bld_a583f440a0ab",
        "build_status": "ready",
        "error": null,
        "content_hash": "267d174fa14b05d66608cbd8315242f4b0f5b0b62a5fd94ffa852ee6cf62f978",
        "source_revision": 1,
        "created_at": "2026-09-15T07:45:38.595886+00:00"
      }
    ]
  }
}
```

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

<ResponseField name="items" type="object[]">
  스냅샷 목록.

  <Expandable title="fields">
    <ResponseField name="build_id" type="string" required>
      Build ID.
    </ResponseField>

    <ResponseField name="build_status" type="string" required>
      상태.
    </ResponseField>

    <ResponseField name="error" type="string">
      실패 요약.
    </ResponseField>

    <ResponseField name="content_hash" type="string">
      콘텐츠 해시.
    </ResponseField>

    <ResponseField name="source_revision" type="integer">
      고정 시점 드래프트 리비전.
    </ResponseField>

    <ResponseField name="created_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를 직접 호출하세요.
