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

# 번역 오버레이 조회

> 로케일 하나 번역 오버레이 전체.

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

인증: 선택.

로케일 하나 번역 오버레이 전체(카드 필드와 README 포함).

## 요청

### 경로 파라미터

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

<ParamField path="locale" type="string" required>
  로케일 코드. 예: `ja-JP`.
</ParamField>

### 요청 예시

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

## 응답

### 200 성공

```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>
  이 오버레이의 로케일.
</ResponseField>

<ResponseField name="name" type="string">
  번역된 표시 이름.
</ResponseField>

<ResponseField name="summary" type="string">
  번역된 요약.
</ResponseField>

<ResponseField name="readme" type="string">
  번역 README Markdown(있을 때).
</ResponseField>

<ResponseField name="stale" type="boolean">
  최신 Release 미게시 드래프트 변경 기반이면 `true`.
</ResponseField>

### 오류

| HTTP | `code`                  | `category`  | 설명             |
| ---- | ----------------------- | ----------- | -------------- |
| 404  | `app-not-found`         | `not_found` | App 없거나 비가시.   |
| 404  | `translation-not-found` | `not_found` | 이 로케일 오버레이 없음. |

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

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

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