Naver AI Overview API
/search?engine=naver_ai_overview API endpoint allows you to scrape the results from Naver search engine via our SerpApi service. Head to the playground for a live and interactive demo.
API Parameters
Serpapi Parameters
device
Optional
Parameter defines the device to use to get the results. It can be set to desktop (default) to use a regular browser, tablet to use a tablet browser (currently using iPads), or mobile to use a mobile browser.
no_cache
Optional
Parameter will force SerpApi to fetch the Naver Ai Overview results even if a cached version is already present. A cache is served only if the query and all parameters are exactly the same. Cache expires after 1h. Cached searches are free, and are not counted towards your searches per month. It can be set to false (default) to allow results from the cache, or true to disallow results from the cache. no_cache and async parameters should not be used together.
async
Optional
Parameter defines the way you want to submit your search to SerpApi. It can be set to false (default) to open an HTTP connection and keep it open until you got your search results, or true to just submit your search to SerpApi and retrieve them later. In this case, you'll need to use our Searches Archive API to retrieve your results. async and no_cache parameters should not be used together. async should not be used on accounts with Ludicrous Speed enabled.
zero_trace
Optional
Enterprise only. Parameter enables ZeroTrace mode. It can be set to false (default) or true. Enable this mode to skip storing search parameters, search files, and search metadata on our servers. This may make debugging more difficult.
output
Optional
Parameter defines the final output you want. It can be set to json (default) to get a structured JSON of the results, or html to get the raw html retrieved.
json_restrictor
Optional
Parameter defines the fields you want to restrict in the outputs for smaller, faster responses. See JSON Restrictor for more details.
API Results
JSON Results
JSON output includes structured data for text_blocks, references, and more.
A search status is accessible through search_metadata.status. It flows this way: Processing -> Success || Error. If a search has failed, error will contain an error message. search_metadata.id is the search ID inside SerpApi.
HTML Results
HTML output is useful to debug JSON results or support features not supported yet by SerpApi. HTML output gives you the raw HTML result from Naver AI Overview.
API Examples
JSON structure overview
{
...
"markdown": "String - Markdown formatted text representing the main content",
"text_blocks": [
{
"type": "String - Type of the text block. Can be 'heading', 'paragraph', 'list'",
"snippet": "String - Snippet of the text block",
"snippet_highlighted_words": "Array of Strings - Highlighted words in the snippet",
"reference_indexes": "Array of Integers - Indexes of references related to this text block",
// Only for 'list' type
"list": [
{
"snippet": "String - Snippet of the list item",
"snippet_highlighted_words": "Array of Strings - Highlighted words in the snippet",
"reference_indexes": "Array of Integers - Indexes of references related to this list item"
}
]
}
],
"references": [
{
"index": "Integer - Index of the reference",
"title": "String - Title of the reference",
"snippet": "String - Snippet of the reference",
"link": "String - URL of the reference",
"source": "String - Source name of the reference",
"source_icon": "String - URL of the source icon"
},
...
],
"media": [
{
"title": "String - Title of the media",
"link": "String - URL of the media",
"thumbnail": "String - URL of the media thumbnail",
"platform": "String - Platform name of the media"
},
...
],
"related_questions": [
{
"question": "String - Related question",
"serpapi_link": "String - SerpApi link for the related question"
},
...
],
...
}