---
title: "작업 상태 확인"
slug: "ai-application-service-clovaspeech-longsentence-getjobstatus"
updated: 2026-04-23T08:55:39Z
published: 2026-04-23T09:02:17Z
canonical: "api.ncloud-docs.com/ai-application-service-clovaspeech-longsentence-getjobstatus"
---

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

# 작업 상태 확인

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

장문 인식에서 `async`(비동기) 방식 요청의 작업 상태를 확인합니다.

## 요청

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

| 메서드 | URI |
| --- | --- |
| GET | /recognizer/{token} |

### 요청 헤더

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

### 요청 경로 파라미터

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

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `token` | String | Required | 결과 토큰 |

### 요청 예시

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

```
curl --location --request GET 'https://clovaspeech-gw.ncloud.com/external/v1/88**/{InvokeKey}/recognizer/{token}' \
--header 'X-CLOVASPEECH-API-KEY: {앱 등록 시 발급받은 Secret Key}'
```

## 응답

응답 형식을 설명합니다.

### 응답 바디

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

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `result` | String | - | 상태 확인 결과 코드 - `WAITING` \| `PROCESSING` \| `FAILED` \| `COMPLETED` \| `TIMEOUT` - `WAITING`: 요청 작업 대기 중 - `PROCESSING`: 요청 작업 처리 중 - `FAILED`: 요청 작업 실패 - `COMPLETED`: 요청 작업 성공 - `TIMEOUT`: 요청 작업 시간 초과 |
| `message` | String | - | 상태 확인 결과 메시지 |
| `token` | String | - | 결과 토큰 |
| `segments` | Array | - | [Object Storage 파일 인식](/docs/ai-application-service-clovaspeech-longsentence#segments), [외부 파일 인식](/docs/ai-application-service-clovaspeech-longsentence-externalurl#segments), [로컬 파일 인식](/docs/ai-application-service-clovaspeech-longsentence-local#segments)의 `segments` 세부 정보 참조 |
| `speakers` | Array | - | [Object Storage 파일 인식](/docs/ai-application-service-clovaspeech-longsentence#segments), [외부 파일 인식](/docs/ai-application-service-clovaspeech-longsentence-externalurl#segments), [로컬 파일 인식](/docs/ai-application-service-clovaspeech-longsentence-local#segments)의 `speakers` 세부 정보 참조 |
| `events` | Array | - | [Object Storage 파일 인식](/docs/ai-application-service-clovaspeech-longsentence#segments), [외부 파일 인식](/docs/ai-application-service-clovaspeech-longsentence-externalurl#segments), [로컬 파일 인식](/docs/ai-application-service-clovaspeech-longsentence-local#segments)의 `events` 세부 정보 참조 |
| `eventTypes` | Array | - | [Object Storage 파일 인식](/docs/ai-application-service-clovaspeech-longsentence#segments), [외부 파일 인식](/docs/ai-application-service-clovaspeech-longsentence-externalurl#segments), [로컬 파일 인식](/docs/ai-application-service-clovaspeech-longsentence-local#segments)의 `eventTypes` 세부 정보 참조 |

### 응답 상태 코드

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

### 응답 예시

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

#### 성공

`async`로 요청하여 호출이 성공한 경우의 응답 예시는 다음과 같습니다.

```
{
    "result": "COMPLETED",
    "token": "{token}",
    "segments": [],
    "speakers": [],
    "events": [],
    "eventTypes": []
}
```

#### 실패

`sync`로 요청하여 호출이 실패한 경우의 응답 예시는 다음과 같습니다.

```
{
    "result": "ERROR_TOKEN_INVALID",
    "message": "Token does not exist",
    "token": "{token}",
    "segments": [],
    "speakers": [],
    "events": [],
    "eventTypes": []
}
```
