> ## 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/datasets/{dataset_id}`

인증: API 키 필요(`Authorization: Bearer <API Key>`).

데이터셋 하나 메타데이터. 비가시는 없음과 비공개를 구분하지 않고 `404`.

## 요청

### 경로 파라미터

<ParamField path="dataset_id" type="string" required>
  데이터셋 id.
</ParamField>

### 요청 예시

```bash theme={null}
curl   -H "Authorization: Bearer $OCTOPARSE_API_KEY"   "https://api-datahub.octoparse.com/v1/datasets/ds_0bd5345d13d0"
```

## 응답

### 200 성공

```json theme={null}
{
  "data": {
    "dataset_id": "ds_0bd5345d13d0",
    "row_count": 120,
    "retained": false,
    "created_at": "2026-09-01T08:00:00+00:00",
    "expires_at": "2026-12-01T08:00:00+00:00"
  }
}
```

### 오류

| HTTP | `code`              | `category`  | 설명              |
| ---- | ------------------- | ----------- | --------------- |
| 401  | `unauthorized`      | `forbidden` | API 키 누락 또는 무효. |
| 404  | `dataset-not-found` | `not_found` | 데이터셋 없거나 비가시.   |

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

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

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