---
title: "형태소 분석 가능한 언어 조회 "
slug: "analytics-cloudsearch-getlanguage"
tags: ["Cloud Search"]
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.

# 형태소 분석 가능한 언어 조회

형태소 분석이 가능한 언어들을 조회합니다.
조회된 언어들로 [형태소 분석기를 조회](/docs/analytics-cloudsearch-gettokenizer)하여 [Domain 생성](/docs/analytics-cloudsearch-createdomain)시 사용할 수 있습니다.

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


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


| 필드명                 | 타입            | 설명                  | 비고           |
|-----------------------|-----------------|-----------------------|----------------|
| - | Array<string> | 형태소 분석이 가능한 언어 목록 |  |

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

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


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


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

```http
GET /cloudsearch/real/v1/language HTTP/1.1
Host: cloudsearch.apigw.ntruss.com
x-ncp-iam-access-key: cPMl0CYGgRYvEa8sylCj
x-ncp-apigw-signature-v2: rbKtQFcB9Pl1mBBIduhMUqgTF3c30bJx2HXZDUj8TKM=
x-ncp-apigw-timestamp: 1551670779072
```

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


```json
[
  "english",
  "indonesian",
  "japanese",
  "korean",
  "thai"
]
```
