> ## 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/jp/datahub/api/reference/discovery/list-data-app-versions">App バージョン履歴</a>）。新しい順。`latest` は未 yank の最大版。

## リクエスト

### パスパラメータ

<ParamField path="app_id" type="string" required>
  App reference.
</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`  | Description    |
| ---- | -------------- | ----------- | -------------- |
| 401  | `unauthorized` | `forbidden` | API キー欠落または無効。 |

エラー応答は `{"error": {code, category, message, retryable}}` です。<a href="/docs/jp/datahub/api/reference/introduction#errors">エラー</a> を参照。

## クライアントライブラリ

Python / JavaScript SDK はまだこのエンドポイントをラップしていません。REST を直接呼び出してください。
