> ## 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-Übersetzungs-Locales

> Vorhandene Übersetzungs-Overlays einer App auflisten.

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

Authentifizierung: optional.

Listet Locales mit Übersetzungs-Overlay für die App. Die Source-Locale des Manifests ist separat und erscheint hier ggf. nicht.

## Anfrage

### Pfadparameter

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

### Beispielanfrage

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

## Antwort

### 200 Erfolg

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

<ResponseField name="source_locale" type="string">
  Locale des Manifest-Quelltexts. Ohne Angabe gilt der Deployment-Standard.
</ResponseField>

<ResponseField name="locales" type="array" required>
  Locales, für die ein Overlay existiert.
</ResponseField>

### Fehler

| HTTP | `code`          | `category`  | Beschreibung                                                         |
| ---- | --------------- | ----------- | -------------------------------------------------------------------- |
| 404  | `app-not-found` | `not_found` | App existiert nicht oder ist für die aktuelle Credential unsichtbar. |

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.
