---
title: "Custom Attributes 목록 조회"
slug: "nclue-getcustomattributeslist"
updated: 2026-07-23T09:04:22Z
published: 2026-07-23T09:04:22Z
canonical: "api.ncloud-docs.com/nclue-getcustomattributeslist"
---

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

# Custom Attributes 목록 조회

VPC 환경에서 이용 가능합니다.

생성한 Custom Attributes의 Profile 목록을 조회합니다. 조회된 모든 Profile의 상세 정보를 확인할 수 있습니다.

## 요청

요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.

| 메서드 | URI |
| --- | --- |
| GET | /profile/custom-attributes |

### 요청 헤더

NCLUE API에서 공통으로 사용하는 헤더에 대한 정보는 [NCLUE 요청 헤더](/docs/nclue-api-overview#%EC%9A%94%EC%B2%AD%ED%97%A4%EB%8D%94)를 참조해 주십시오.

### 요청 쿼리 파라미터

요청 쿼리 파라미터에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `index` | Integer | Optional | 목록 시작 위치 - 기본값: 0 |
| `limit` | Integer | Optional | 목록 출력 제한 값 - 1~100 (기본값: 20) |

### 요청 예시

요청 예시는 다음과 같습니다.

```
curl --location --request GET 'https://nclue.apigw.ntruss.com/api/v1/profile/custom-attributes?index=0&limit=20' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
```

## 응답

응답 형식을 설명합니다.

### 응답 바디

응답 바디에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `index` | Integer | - | 목록 시작 위치 |
| `limit` | Integer | - | 목록 출력 제한 값 |
| `total` | Integer | - | 조회된 Profile 개수 |
| `profiles` | Array | - | Profile 목록: [profiles](/docs/nclue-getcustomattributeslist#profiles) |

#### `profiles`

`profiles`에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `profile_id` | String | - | Profile ID |
| `profile_name` | String | - | Profile 이름 |
| `feature_id` | String | - | 프로파일링에 적용할 Feature ID |
| `feature_name` | String | - | 프로파일링에 적용할 Feature 이름 |
| `keyword_set` | String | - | 속성 키워드 목록 - 각 키워드는 ','로 구분 |
| `status` | String | - | Profile 상태 - `registered` \| `pending` \| `in_progress` \| `completed` \| `failed` - `registered`: 등록됨 - `pending`: 대기 중 - `in_progress`: 생성 중 - `completed`: 사용 가능 - `failed`: 실패 |
| `created_at` | String | - | Profile 생성 요청 일시 - ISO 8601 형식 |
| `completed_at` | String | - | Profile 생성 완료 일시 - ISO 8601 형식 |
| `result_bucket` | String | - | 프로파일링 결과가 저장된 Object Storage 버킷 이름 |
| `result_file_path` | String | - | 프로파일링 결과가 저장된 `result_bucket` 내 파일 경로 |
| `nclue_model_name` | String | - | Feature 생성 시 사용된 NCLUE 모델명 (예: NFM02) |
| `nclue_model_status` | String | - | NCLUE 모델의 현재 상태 - `active`: 현재 사용 가능 - `deprecated`: 더 이상 사용되지 않음 |
| `line_count` | Integer | - | 프로파일링에 적용할 Feature의 라인 수 |
| `fail_message` | String \| null | - | 생성 실패 메시지 - 생성 실패 시 메시지를 반환하며, 성공 시에는 null 리턴 - 메시지별 해결 방법은 [NCLUE 문제 해결](https://guide.ncloud-docs.com/docs/nclue-troubleshoot) 참조 |

### 응답 상태 코드

NCLUE에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 [NCLUE 응답 상태 코드](/docs/nclue-api-overview#%EC%9D%91%EB%8B%B5%EC%83%81%ED%83%9C%EC%BD%94%EB%93%9C)를 참조해 주십시오.

### 응답 예시

응답 예시는 다음과 같습니다.

```
{
    "index": 0,
    "limit": 20,
    "total": 2,
    "profiles": [
        {
            "profile_id": "4d4522c7-****-****-****-a453cb89f055",
            "profile_name": "YOUR_PROFILE_NAME",
            "feature_id": "28bd06bb-****-****-****-9f2d6a9c3313",
            "feature_name": "YOUR_FEATURE_NAME",
            "keyword_set": "달리기,러닝,야외달리기,한강달리기,마라톤,달리기 동호회,10km 달리기,5km 달리기",
            "status": "completed",
            "created_at": "2024-10-18T01:33:06",
            "completed_at": "2024-10-18T01:34:20",
            "result_bucket": "YOUR_BUCKET_NAME",
            "result_file_path": "path/filename",
            "nclue_model_name": "NFM2",
            "nclue_model_status": "active",
            "line_count": 93734,
            "fail_message": null
        },
        // (생략)
    ]
}
```
