> ## 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 のカード級翻訳を一括。

**`POST`** `https://api-datahub.octoparse.com/v1/data-apps/translations/lookup`

認証：任意。

多数 App のカード級翻訳を 1 ロケールで一括取得。混在ロケールのカタログで N+1 を避ける用途。

## リクエスト

### リクエスト body

<ParamField body="locale" type="string" required>
  対象ロケール。例: `ja-JP`。
</ParamField>

<ParamField body="apps" type="array" required>
  App 参照（`app_<hex>` または `<namespace>/<app_name>`）。
</ParamField>

### リクエスト例

```bash theme={null}
curl -X POST   -H "Authorization: Bearer $OCTOPARSE_API_KEY"   -H "Content-Type: application/json"   -d '{"locale":"ja-JP","apps":["carol/probe-b","carol/reviews-query"]}'   "https://api-datahub.octoparse.com/v1/data-apps/translations/lookup"
```

## レスポンス

### 200 成功

```json theme={null}
{
  "data": {
    "locale": "ja-JP",
    "items": [
      {
        "app_id": "app_abc",
        "name": "Review search",
        "summary": "Search product reviews",
        "found": true
      }
    ]
  }
}
```

オーバーレイなしも `found: false` で出るのでクライアントは原文にフォールバック可能。

### エラー

| HTTP | `code`          | `category`      | Description    |
| ---- | --------------- | --------------- | -------------- |
| 400  | `invalid-input` | `invalid_input` | body が無効。      |
| 401  | `unauthorized`  | `forbidden`     | API キー欠落または無効。 |

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

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

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