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

# App 翻訳ロケール一覧

> 翻訳オーバーレイのあるロケール。

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

認証：任意。

翻訳オーバーレイがあるロケール一覧。マニフェストのソースロケールは別管理でここに出ないことがある。

## リクエスト

### パスパラメータ

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

### リクエスト例

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

## レスポンス

### 200 成功

```json theme={null}
{
  "data": {
    "source_locale": "en-US",
    "locales": ["ja-JP", "de-DE"]
  }
}
```

<ResponseField name="source_locale" type="string">
  マニフェスト原文ロケール。未設定時はデプロイ既定。
</ResponseField>

<ResponseField name="locales" type="array" required>
  オーバーレイがあるロケール。
</ResponseField>

### エラー

| HTTP | `code`          | `category`  | Description     |
| ---- | --------------- | ----------- | --------------- |
| 404  | `app-not-found` | `not_found` | App が存在しないか不可視。 |

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

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

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