---
title: "형태소 분석 옵션 조회 - 가능한 언어 목록"
slug: "analytics-cloudsearch-gettokenizerlist"
updated: 2026-07-23T09:04:38Z
published: 2026-07-23T09:04:38Z
canonical: "api.ncloud-docs.com/analytics-cloudsearch-gettokenizerlist"
---

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

# 형태소 분석 옵션 조회 - 가능한 언어 목록

형태소 분석이 가능한 언어들을 조회합니다. 조회된 옵션들을 [Domain 생성](/docs/analytics-cloudsearch-createdomain)시 색인 옵션으로 사용할 수 있으며, 색인 별 하나 이상의 언어에 대해 형태소 분석을 설정하려면 [형태소 분석기 조회 - 특정 언어](/docs/analytics-cloudsearch-gettokenizer)를 통해 조회 가능합니다.

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

## 응답

| 필드명 | 타입 | 설명 | 비고 |
| --- | --- | --- | --- |
| [].language | string | 형태소 분석이 가능한 언어 |  |
| [].type | string | 해당 언어 옵션의 [IndexProcessor](/docs/common-apidatatype-csindexprocessor)의 type 값 |  |
| [].method | string | 해당 언어 옵션의 [IndexProcessor](/docs/common-apidatatype-csindexprocessor)의 method 값 |  |
| [].option | string | 해당 언어 옵션의 [IndexProcessor](/docs/common-apidatatype-csindexprocessor)의 option 값 |  |

### 응답 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 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
```

### 응답 예시

```
[
  {
    "language": "chinese",
    "type": "hanaterm",
    "method": "sgmt",
    "option": "+china +china_cn +china_tw"
  },
  {
    "language": "english",
    "type": "hanaterm",
    "method": "sgmt",
    "option": "+english +revert"
  },
  {
    "language": "indonesian",
    "type": "hanaterm",
    "method": "sgmt",
    "option": "+indonesian"
  },
  {
    "language": "japanese",
    "type": "hanaterm",
    "method": "sgmt",
    "option": "+japan +josacat +eomicat"
  },
  {
    "language": "korean",
    "type": "hanaterm",
    "method": "sgmt",
    "option": "+korea +josacat +eomicat"
  },
  {
    "language": "thai",
    "type": "hanaterm",
    "method": "sgmt",
    "option": "+thai"
  }
]
```
