---
title: "데이터셋 조회"
slug: "ai-application-service-aitems-dataset-read"
updated: 2026-04-23T08:55:41Z
published: 2026-04-23T09:02:17Z
canonical: "api.ncloud-docs.com/ai-application-service-aitems-dataset-read"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 데이터셋 조회

<p class="platform-info type-classic-vpc">Classic/VPC 환경에서 이용 가능합니다.</p>

생성된 데이터셋 중 특정 데이터셋의 상세 정보를 조회합니다. 

## 요청<a name="요청"></a>
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.

| 메서드 | URI |
| :--- | :--- |
| GET | /datasets/{datasetId} |

### 요청 헤더<a name="요청헤더"></a>
AiTEMS API에서 공통으로 사용하는 헤더에 대한 정보는 [AiTEMS 요청 헤더](docs/aitems-overview#요청헤더)를 참조해 주십시오.

### 요청 경로 파라미터<a name="요청경로파라미터"></a>
요청 경로 파라미터에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부| 설명 |
| :---- | :---- | :---- | :---- |
| `datasetId` | String | Required | 데이터셋 ID<ul><li>[데이터셋 목록 조회](/docs/ai-application-service-aitems-dataset-list) 참조</li></ul> |

### 요청 예시<a name="요청예시"></a>
요청 예시는 다음과 같습니다.
 
```shell
curl --location --request GET 'https://aitems.apigw.ntruss.com/api/v1/datasets/bu457******' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Content-Type: application/json'
```

## 응답<a name="응답"></a>
응답 형식을 설명합니다.

### 응답 바디<a name="응답바디"></a>
응답 바디에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부| 설명 |
| :---- | :---- | :---- | :---- |
| `datasetId` | String | - | 데이터셋 ID |
| `type` | String | - | 데이터셋 타입<ul><li>`user` \| `item` \| `interaction`<ul><li>`user`: 사용자 정보(연령, 성별 등)를 담은 데이터</li><li>`item`: 상품 관련 정보(가격, 출시일, 카테고리 등)를 담은 데이터</li><li>`interaction`: 사용자와 상품 간 상호작용으로 얻은 기록을 담은 데이터</li></ul></li></ul> |
| `name` | String | - | 데이터셋 이름 |
| `description` | String  | - | 데이터셋에 대한 설명 |
| `schemaName` | String | - | 데이터셋 스키마 이름 |
| `status` | String | - | 데이터셋 상태<ul><li>`enable` \| `waiting` \| `processing` \| `upload_failed` \| `disable` \| `deleting`<ul><li>`enable`: 학습 가능</li><li>`waiting`, `processing`: 대기 중</li><li>`upload_failed`, `disable`, `deleting`: 업로드 실패</li></ul></li></ul> |
| `osInfo` | Object | - | 데이터 파일이 저장된 Object Storage 정보 |
| `osInfo.region` | String | - | 데이터 파일이 저장된 Object Storage의 리전<ul><li>`KR`</li></ul> |
| `osInfo.bucket` | String | - | 데이터 파일이 저장된 Object Storage의 버킷 이름 |
| `osInfo.key` | String | - | 데이터 파일이 저장된 Object Storage의 경로(Prefix) |
| `connectedServices` | Array | - | 데이터셋을 사용 중인 서비스 정보: [connectedServices](#connectedServices) |
| `createdDate` | String | - | 데이터셋 생성 일시 |
| `updatedDate` | String | - | 데이터셋 최종 업데이트 일시 |

#### `connectedServices` <a name="connectedServices"></a>
`connectedServices`에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부| 설명 |
| :---- | :---- | :---- | :---- |
| `serviceId` | String | - | 서비스 ID |
| `name` | String | - | 서비스 이름 |

### 응답 상태 코드<a name="응답상태코드"></a>
AiTEMS API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 [AiTEMS 응답 상태 코드](/docs/aitems-overview#응답상태코드)를 참조해 주십시오.

### 응답 예시 <a name="응답예시"></a>
응답 예시는 다음과 같습니다.

```json
{
    "datasetId": "bu457******",
    "type": "interaction",
    "name": "interaction_dataset",
    "description": "",
    "schemaName": "interaction_schema",
    "status": "enable",
    "osInfo": {
        "region": "KR",
        "bucket": "aitems",
        "key": "interaction_dataset.csv"
    },
    "connectedServices": [
        {
            "serviceId": "fboyb******",
            "name": "service"
        },
        {
            "serviceId": "xv94v******",
            "name": "service1"
        },
        {
            "serviceId": "6wxgu******",
            "name": "service3"
        }
    ],
    "createdDate": "2024-07-30T09:49:19.254",
    "updatedDate": "2024-07-30T09:49:35.364"
}
```
