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

# Leggi overlay di traduzione

> Leggi l’overlay di traduzione completo per una locale, incluso il README.

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

Autenticazione: facoltativa.

Restituisce l’overlay di traduzione completo per una locale, inclusi campi card e README se presenti.

## Richiesta

### Parametri di percorso

<ParamField path="app_id" type="string" required>
  Riferimento app: `app_<hex>` oppure `<namespace>/<app_name>`.
</ParamField>

<ParamField path="locale" type="string" required>
  Codice locale, ad esempio `ja-JP`.
</ParamField>

### Esempio di richiesta

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

## Risposta

### 200 successo

```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>
  Locale di questo overlay.
</ResponseField>

<ResponseField name="name" type="string">
  Nome visualizzato tradotto.
</ResponseField>

<ResponseField name="summary" type="string">
  Summary tradotto.
</ResponseField>

<ResponseField name="readme" type="string">
  README Markdown tradotto, se presente.
</ResponseField>

<ResponseField name="stale" type="boolean">
  `true` quando l’overlay si basa su modifiche draft non ancora pubblicate come latest Release.
</ResponseField>

### Errori

| HTTP | `code`                  | `category`  | Descrizione                        |
| ---- | ----------------------- | ----------- | ---------------------------------- |
| 404  | `app-not-found`         | `not_found` | L’app non esiste o non è visibile. |
| 404  | `translation-not-found` | `not_found` | Nessun overlay per questa locale.  |

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.
