Naver AI Overview API

Track Naver's AI Overview answers for any query: get the AI-generated overview, its cited sources, and related media as structured JSON. Monitor whether your brand appears in Naver's AI answers. Built for Korean AEO and GEO monitoring. Pay per query, MCP-ready.

MEDIAN LAGon demand
PARAMETERS2
TOTAL USERS8
MONTHLY ACTIVE8
TOTAL RUNS941
RUNS SUCCEEDED99.9%
RATING5.0 (1)

Input parameters

PARAMETERTYPEREQDEFAULTDESCRIPTION
query string no Enter a single query, in Korean or any language, to fetch the Naver AI Overview for, for example '당뇨병 증상' (diabetes symptoms).
queries string[] no Provide a list of queries to fetch AI Overviews for in one run.

Worked examples

Basic — the required input, with the schema's own example values
{
  "query": "당뇨병 증상",
  "queries": [
    "example"
  ]
}

Tasks

Saved runs with the inputs already filled in — each one a standalone page and a working configuration example.

Request a task →

Code

curl

curl -X POST "https://api.apify.com/v2/acts/johnvc~naver-ai-overview-api/run-sync-get-dataset-items" \
  -H "Authorization: Bearer $APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"query": "당뇨병 증상", "queries": ["example"]}'

Python

from apify_client import ApifyClient

client = ApifyClient("APIFY_TOKEN")
run = client.actor("johnvc/naver-ai-overview-api").call(
    run_input={'query': '당뇨병 증상', 'queries': ['example']}
)
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)