Naver Dictionary Results API
Key Change
dictionary_results key has been replaced by dictionary_result with a restructured format.
When a Naver search contains a dictionary result, it is parsed into the dictionary_result object in the JSON output. The dictionary_result object can contain title, link, pronunciations, definitions, conjugations, thesaurus, and other_meanings.
Each definition is stored in the definitions array and can contain position, description, example, and example_pronunciation.
The conjugations object contains various grammatical forms of the word, such as adjective, adverb, comparative_degree, noun, past, past_participle, plural, present_participle, superlative, third_person_singular_present, and verb. Each conjugation type is an array containing objects with title and link fields.
The thesaurus object includes a heading, a groups array, and an optional see_more object. Each group includes a description, with synonyms and/or antonyms arrays, with each item containing title, link, and an optional strength field.
Dictionary results can be found in nexearch type searches.
The API endpoint is https://serpapi.com/search?engine=naver
Head to the playground for a live and interactive demo.
API Examples
Thesaurus example for query:hazard
List layout for thesaurus section.
{
...
"thesaurus": {
"heading": "유의어·반의어",
"groups": [
{
"synonyms": [
{
"title": "danger",
"link": "https://en.dict.naver.com/#/search?range=all&query=danger"
},
{
"title": "risk",
"link": "https://en.dict.naver.com/#/search?range=all&query=risk"
},
{
"title": "peril",
"link": "https://en.dict.naver.com/#/search?range=all&query=peril"
}
],
"antonyms": [
{
"title": "keep safe",
"link": "https://en.dict.naver.com/#/search?range=all&query=keep safe"
}
]
}
],
"see_more": {
"title": "더보기",
"link": "https://en.dict.naver.com/thesaurus/#/thesaurus?query=hazard"
}
},
...
}
Thesaurus example for query:enormous
List layout for thesaurus section.
{
...
"thesaurus": {
"heading": "유의어·반의어",
"groups": [
{
"description": "거대한",
"synonyms": [
{
"title": "huge",
"link": "https://en.dict.naver.com/#/search?range=all&query=huge"
},
{
"title": "vast",
"link": "https://en.dict.naver.com/#/search?range=all&query=vast"
},
{
"title": "extensive",
"link": "https://en.dict.naver.com/#/search?range=all&query=extensive"
},
...
],
"antonyms": [
{
"title": "tiny",
"link": "https://en.dict.naver.com/#/search?range=all&query=tiny"
}
]
}
]
},
...
}
Thesaurus example for query:angry
Spectrum layout for thesarus section.
{
...
"thesaurus": {
"heading": "유의어",
"groups": [
{
"description": "화난, 성난",
"synonyms": [
{
"title": "irate",
"link": "https://en.dict.naver.com/#/search?range=all&query=irate",
"strength": "강함"
},
{
"title": "angry",
"link": "https://en.dict.naver.com/#/search?range=all&query=angry"
},
{
"title": "mad",
"link": "https://en.dict.naver.com/#/search?range=all&query=mad"
},
{
"title": "indignant",
"link": "https://en.dict.naver.com/#/search?range=all&query=indignant"
},
{
"title": "pissed off",
"link": "https://en.dict.naver.com/#/search?range=all&query=pissed off"
},
{
"title": "cross",
"link": "https://en.dict.naver.com/#/search?range=all&query=cross",
"strength": "약함"
}
]
},
...
]
},
...
}