---
title: "형태소 분석기 조회 - 특정 언어 "
slug: "analytics-cloudsearch-gettokenizer"
updated: 2026-04-23T08:56:09Z
published: 2026-04-23T09:02:33Z
---

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

# 형태소 분석기 조회 - 특정 언어 

특정 언어로 색인을 생성해주는 [IndexProcessor(형태소 분석기)](/docs/common-apidatatype-csindexprocessor) 값을 조회합니다. 조회한 값으로 [Domain 생성](/docs/analytics-cloudsearch-createdomain)시 색인 옵션으로 사용하여 언어별 색인을 생성할 수 있습니다.

```
GET https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/tokenizer/{languages}
```

## 요청

### 요청 파라미터

| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
| --- | --- | --- | --- | --- |
| languages | Yes | Array[string] | [형태소 분석 옵션 조회 - 가능한 언어 목록](/docs/analytics-cloudsearch-gettokenizerlist)를 통해 조회된 언어 중 사용할 언어를 모두 입력 | 색인을 생성할 언어 |

## 응답

| 필드명 | 타입 | 설명 | 비고 |
| --- | --- | --- | --- |
| - | [IndexProcessor](/docs/common-apidatatype-csindexprocessor) | 요청한 언어들의 형태소 분석기 정보 |  |

### 응답 Status

| HTTP Status | Desc |
| --- | --- |
| 200 | OK(조회 완료) |
| 400 | Bad Request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not Found |
| 500 | Internal Server Error |

## 예시

### 요청 예시

```
GET /CloudSearch/real/v1/tokenizer/korean%2Cthai HTTP/1.1
Host: cloudsearch.apigw.ntruss.com
x-ncp-iam-access-key: cPMl0CYGgRYvEa8sylCj
x-ncp-apigw-signature-v2: +Ln++MqcKHckKli2y/bB76xLUu8qR9rLvo6j2yIYuYg=
x-ncp-apigw-timestamp: 1551453306138
```

### 응답 예시

```
{
  "type": "hanaterm",
  "method": "sgmt",
  "option": "+korea +josacat +eomicat +thai"
}
```
