---
title: "동의어 사전 조회"
slug: "analytics-cloudsearch-getsynonym"
tags: ["Cloud Search"]
updated: 2026-07-23T09:04:38Z
published: 2026-07-23T09:04:38Z
canonical: "api.ncloud-docs.com/analytics-cloudsearch-getsynonym"
---

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

# 동의어 사전 조회

도메인에 설정된 동의어 사전의 상세 정보를 조회합니다.

```
GET https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/domain/{name}/synonym/{synoName}
```

## 요청

### 요청 파라미터

| 파라미터 명 | 필수 여부 | 타입 | 제약사항 | 설명 |
| --- | --- | --- | --- | --- |
| name | Yes | string |  | 생성되어져 있는 Domain 이름 |
| synoName | Yes | string |  | 생성되어져 있는 동의어 사전 이름 |
| version | No | string |  | 동의어 사전 버전 |

## 응답

| 필드명 | 타입 | 설명 | 비고 |
| --- | --- | --- | --- |
| name | string | 동의어 사전 이름 |  |
| serviceName | string | 동의어 사전 서비스 이름 | 색인 시 사용하는 서비스 이름 |
| version | string | 동의어 사전에 설정된 버전 |  |
| description | string | 동의어 사전 설명 |  |
| wordList | string | 동의어로 설정할 단어 목록 |  |
| createdDate | string | 동의어 사전 생성 시간 |  |
| updatedDate | string | 동의어 사전 수정 시간 |  |

### 응답 Status

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

## 예시

### 요청 예시

```
GET https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/domain/wiki/synonym/syno?version=0.1
x-ncp-iam-access-key: cPMl0CYGgRYvEa8sylCj
x-ncp-apigw-signature-v2: +Ln++MqcKHckKli2y/bB76xLUu8qR9rLvo6j2yIYuYg=
x-ncp-apigw-timestamp: 1551453306138
```

### 응답 예시

```
{
  "name": "syno",
  "createdDate": "2020-12-09T10:00:59.276Z",
  "updatedDate": "2020-12-09T10:00:59.276Z",
  "description": "wiki 동의어 사전",
  "serviceName": "wiki_syno",
  "wordList": "현대\t횬대\t\n아우디\t아오디\t\n",
  "version": "0.1"
}
```
