---
title: "Task Run 목록 조회"
slug: "nclue-gettaskrunlist"
updated: 2026-05-19T07:54:32Z
published: 2026-05-19T09:00:20Z
---

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

# Task Run 목록 조회

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

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

## 요청 <a name="요청"></a>

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

| 메서드 | URI |
| :--- | :--- |
| GET | /task-runs |

### 요청 헤더 <a name="요청헤더"></a>

NCLUE API에서 공통으로 사용하는 헤더에 대한 정보는 [NCLUE 요청 헤더](/docs/nclue-api-overview#요청헤더)를 참조해 주십시오.

### 요청 쿼리 파라미터<a name="요청쿼리파라미터"></a>

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

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

### 요청 예시 <a name="요청예시"></a>

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

```shell
curl --location --request GET 'https://nclue.apigw.ntruss.com/api/v1/task-runs?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}'
```

## 응답 <a name="응답"></a>

응답 형식을 설명합니다.

### 응답 바디 <a name="응답바디"></a>

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

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

#### `runs` <a name="runs"></a>

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

| 필드 | 타입 | 필수 여부 | 설명 |
| :---- | :---- | :---- | :---- |
| `run_id` | String | - | Run ID |
| `run_name` | String | - | Run 이름 |
| `task_id` | String | - | 적용하려는 Task ID |
| `task_name` | String | - | 적용하려는 Task 이름 |
| `feature_id` | String | - | Task에 적용된 Feature ID |
| `feature_name` | String | - | Task에 적용된 Feature 이름 |
| `status` | String | - | Run 상태<ul><li>`registered` \| `pending` \| `in_progress` \| `completed` \| `failed`<ul><li>`registered`: 등록됨</li><li>`pending`: 대기 중</li><li>`in_progress`: 생성 중</li><li>`completed`: 사용 가능</li><li>`failed`: 실패</li></ul></li></ul> |
| `created_at` | String | - | Run 생성 요청 일시<ul><li>ISO 8601 형식</li></ul> |
| `completed_at` | String | - | Run 생성 완료 일시<ul><li>ISO 8601 형식</li></ul> |
| `result_bucket` | String | - | 작업 결과가 저장된 Object Storage 버킷 이름 |
| `result_file_path` | String | - | 작업 결과가 저장된 `result_bucket` 내 파일 경로 |
| `nclue_model_name` | String | - | Feature 생성 시 사용된 NCLUE 모델명 (예: NFM02) |
| `nclue_model_status` | String | - | NCLUE 모델의 현재 상태<ul><li>`active`: 현재 사용 가능</li><li>`deprecated`: 더 이상 사용되지 않음</li></ul> |
| `line_count` | Integer | - | Task에 적용된 Feature의 라인 수 |
| `fail_message` | String \| null | - | 생성 실패 메시지<ul><li>생성 실패 시 메시지를 반환하며, 성공 시에는 null 리턴</li><li>메시지별 해결 방법은 [NCLUE 문제 해결](https://guide.ncloud-docs.com/docs/nclue-troubleshoot){target="_blank"} 참조</li></ul> |

### 응답 상태 코드 <a name="응답상태코드"></a>

NCLUE에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 [NCLUE 응답 상태 코드](/docs/nclue-api-overview#응답상태코드)를 참조해 주십시오.

### 응답 예시 <a name="응답예시"></a>

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


```json
{
    "index": 0,
    "limit": 20,
    "total": 3,
    "runs": [
        {
            "run_id": "ef667a87-****-****-****-88fb69a9aff7",
            "run_name": "YOUR_RUN_NAME",
            "task_id": "3179664c-****-****-****-af6354344018",
            "task_name": "YOUR_TASK_NAME",
            "feature_id": "28bd06bb-****-****-****-9f2d6a9c3313",
            "feature_name": "YOUR_FEATURE_NAME",
            "status": "completed",
            "created_at": "2024-11-22T08:54:46",
            "completed_at": "2024-11-22T08:55:22",
            "result_bucket": "YOUR_BUCKET_NAME",
            "result_file_path": "path/filename",
            "nclue_model_name": "NFM2",
            "nclue_model_status": "active",
            "line_count": 93734,
            "fail_message": null
        },
        // (생략)
    ]
}
```
