> ## 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 번역 로케일 목록

> 번역 오버레이가 있는 로케일.

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

인증: 선택.

번역 오버레이가 있는 로케일 목록. 매니페스트 소스 로케일은 별도 관리라 여기 안 나올 수 있음.

## 요청

### 경로 파라미터

<ParamField path="app_id" type="string" required>
  App 참조: `app_<hex>` 또는 `<namespace>/<app_name>`.
</ParamField>

### 요청 예시

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

## 응답

### 200 성공

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

<ResponseField name="source_locale" type="string">
  매니페스트 원문 로케일. 미설정 시 배포 기본.
</ResponseField>

<ResponseField name="locales" type="array" required>
  오버레이가 있는 로케일.
</ResponseField>

### 오류

| HTTP | `code`          | `category`  | 설명           |
| ---- | --------------- | ----------- | ------------ |
| 404  | `app-not-found` | `not_found` | App 없거나 비가시. |

오류 응답은 `{"error": {code, category, message, retryable}}`입니다. <a href="/docs/ko/datahub/api/reference/introduction#errors">오류</a> 참고.

## 클라이언트 라이브러리

Python / JavaScript SDK는 아직 이 엔드포인트를 감싸지 않습니다. REST를 직접 호출하세요.
