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

# Übersetzungs-Overlay lesen

> Vollständiges Übersetzungs-Overlay einer Locale lesen, inklusive README.

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

Authentifizierung: optional.

Gibt das volle Übersetzungs-Overlay einer Locale zurück, inkl. Kartenfelder und README falls vorhanden.

## Anfrage

### Pfadparameter

<ParamField path="app_id" type="string" required>
  App-Referenz: `app_<hex>` oder `<namespace>/<app_name>`.
</ParamField>

<ParamField path="locale" type="string" required>
  Locale-Code, z. B. `ja-JP`.
</ParamField>

### Beispielanfrage

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

## Antwort

### 200 Erfolg

```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 dieses Overlays.
</ResponseField>

<ResponseField name="name" type="string">
  Übersetzter Anzeigename.
</ResponseField>

<ResponseField name="summary" type="string">
  Übersetzte Zusammenfassung.
</ResponseField>

<ResponseField name="readme" type="string">
  Übersetztes README-Markdown, falls vorhanden.
</ResponseField>

<ResponseField name="stale" type="boolean">
  `true`, wenn das Overlay auf Draft-Änderungen basiert, die noch nicht als latest Release published sind.
</ResponseField>

### Fehler

| HTTP | `code`                  | `category`  | Beschreibung                             |
| ---- | ----------------------- | ----------- | ---------------------------------------- |
| 404  | `app-not-found`         | `not_found` | App existiert nicht oder ist unsichtbar. |
| 404  | `translation-not-found` | `not_found` | Kein Overlay für diese Locale.           |

Fehlerantworten nutzen `{"error": {code, category, message, retryable}}`. Siehe <a href="/docs/de/datahub/api/reference/introduction#errors">Fehler</a>.

## Client-Bibliotheken

Die Python- und JavaScript-SDKs wrappen diesen Endpoint noch nicht. REST direkt aufrufen.
