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

> App의 Markdown README.

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

인증: 선택. API 키가 있으면 로그인 필요 뷰 App도 보일 수 있습니다.

사람용 리치 텍스트(원시 Markdown). 기독 상세 페이로드에 없고 필요할 때 가져옴. 기본 최신.

## 요청

### 경로 파라미터

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

### 쿼리 파라미터

<ParamField query="version" type="string">
  읽을 버전. 생략 시 최신.
</ParamField>

### 요청 예시

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

## 응답

### 200 성공

본문은 엔벨로프 없는 원시 `text/markdown`. README 없으면 빈 본문.

### 오류

| HTTP | `code`          | `category`  | 설명                                                |
| ---- | --------------- | ----------- | ------------------------------------------------- |
| 401  | `unauthorized`  | `forbidden` | API 키 누락 또는 무효.                                   |
| 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를 직접 호출하세요.
