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

# Traduzioni card in batch

> Recupera traduzioni a livello card per molte app in una locale, per il rendering del catalogo.

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

Autenticazione: facoltativa.

Recupera i campi di traduzione a livello di scheda per molte app in un'unica locale. Pensato per le pagine di catalogo che mostrano schede in locale miste senza letture N+1.

## Richiesta

### Body della richiesta

<ParamField body="locale" type="string" required>
  Locale target, ad esempio `ja-JP`.
</ParamField>

<ParamField body="apps" type="array" required>
  Riferimenti app (`app_<hex>` or `<namespace>/<app_name>`).
</ParamField>

### Esempio di richiesta

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

## Risposta

### 200 successo

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

Le app senza overlay compaiono comunque con `found: false`, così il client può ripiegare sul testo sorgente.

### Errori

| HTTP | `code`          | `category`      | Descrizione                    |
| ---- | --------------- | --------------- | ------------------------------ |
| 400  | `invalid-input` | `invalid_input` | Body non valido.               |
| 401  | `unauthorized`  | `forbidden`     | API key mancante o non valida. |

Le risposte di errore usano `{"error": {code, category, message, retryable}}`. Vedi <a href="/docs/it/datahub/api/reference/introduction#errors">Errori</a>.

## Librerie client

Gli SDK Python e JavaScript non wrappano ancora questo endpoint. Chiama REST direttamente.
