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

# 翻訳オーバーレイ取得

> 1 ロケールの翻訳オーバーレイ全文。

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

認証：任意。

1 ロケールの翻訳オーバーレイ全文（カード欄と README があれば含む）。

## リクエスト

### パスパラメータ

<ParamField path="app_id" type="string" required>
  App 参照: `app_<hex>` または `<namespace>/<app_name>`。
</ParamField>

<ParamField path="locale" type="string" required>
  ロケールコード。例: `ja-JP`。
</ParamField>

### リクエスト例

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

## レスポンス

### 200 成功

```json theme={null}
{
  "data": {
    "locale": "ja-JP",
    "name": "Review search",
    "summary": "Search product reviews",
    "readme": "# How to use\n...",
    "stale": false
  }
}
```

<ResponseField name="locale" type="string" required>
  このオーバーレイのロケール。
</ResponseField>

<ResponseField name="name" type="string">
  翻訳された表示名。
</ResponseField>

<ResponseField name="summary" type="string">
  翻訳された要約。
</ResponseField>

<ResponseField name="readme" type="string">
  翻訳 README Markdown（ある場合）。
</ResponseField>

<ResponseField name="stale" type="boolean">
  最新 Release 未公開の下書き変更に基づくとき `true`。
</ResponseField>

### エラー

| HTTP | `code`                  | `category`  | Description      |
| ---- | ----------------------- | ----------- | ---------------- |
| 404  | `app-not-found`         | `not_found` | App が存在しないか不可視。  |
| 404  | `translation-not-found` | `not_found` | このロケールのオーバーレイなし。 |

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

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

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