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

# Releases listen

> Autor-Ansicht des Versionsverlaufs inkl. Build-ID und Yank-Flag.

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

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

Autorenansicht des Release-Verlaufs (enthält `build_id` und `yanked`; die öffentliche Ansicht ist <a href="/docs/de/datahub/api/reference/discovery/list-data-app-versions">App-Versionsverlauf</a>). Neueste zuerst; `latest` ist die höchste nicht zurückgezogene Version.

## 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/releases"
```

## Antwort

### 200 Erfolg

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

Payload ist in `data` gewrappt. Felder:

<ResponseField name="items" type="object[]">
  Versionsliste.

  <Expandable title="fields">
    <ResponseField name="version" type="string" required>
      Versionsnummer.
    </ResponseField>

    <ResponseField name="build_id" type="string" required>
      Zugehöriger Build.
    </ResponseField>

    <ResponseField name="yanked" type="boolean">
      Ob diese Version zurückgezogen (yanked) ist.
    </ResponseField>

    <ResponseField name="latest" type="boolean">
      Ob dies die neueste Version ist.
    </ResponseField>

    <ResponseField name="published_at" type="string">
      Veröffentlicht am.
    </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.
