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

# Builds listen

> Alle Build-Snapshots und ihren Status listen, neueste zuerst.

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

Authentifizierung: API-Schlüssel erforderlich (`Authorization: Bearer <API Key>`). Nur App-Autor; andere erhalten `404`.

Status jedes Build-Snapshots (building / ready / failed, neueste zuerst) plus Fehlerzusammenfassungen. Auflösung aus Autorensicht: Apps ohne Releases sind trotzdem sichtbar; Nicht-Autoren erhalten immer `404` – der Build-Status ist eine Information auf Autorenseite und wird nach außen nicht bestätigt.

## Anfrage

### Pfadparameter

<ParamField path="app_id" type="string" required>
  App-Referenz.
</ParamField>

### Beispielanfrage

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

## Antwort

### 200 Erfolg

```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"
      }
    ]
  }
}
```

Payload ist in `data` gewrappt. Felder:

<ResponseField name="items" type="object[]">
  Snapshot-Liste.

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

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

    <ResponseField name="error" type="string">
      Fehlerzusammenfassung.
    </ResponseField>

    <ResponseField name="content_hash" type="string">
      Content-Hash.
    </ResponseField>

    <ResponseField name="source_revision" type="integer">
      Draft-Revision zum Zeitpunkt des Einfrierens.
    </ResponseField>

    <ResponseField name="created_at" type="string">
      Erstellungszeit.
    </ResponseField>
  </Expandable>
</ResponseField>

### Fehler

| HTTP | `code`         | `category`  | Beschreibung                             |
| ---- | -------------- | ----------- | ---------------------------------------- |
| 401  | `unauthorized` | `forbidden` | Fehlender oder ungültiger API-Schlüssel. |

Fehlerantworten nutzen `{"error": {code, category, message, retryable}}`. Siehe <a href="/docs/de/datahub/api/reference/introduction#errors">Fehler</a>.

## Client-Bibliotheken

Die Python- und JavaScript-SDKs wrappen diesen Endpoint noch nicht. REST direkt aufrufen.
