Naver News Search
Naver News Search is used to fetch news search results from Naver.
- Fetch news results by keyword
- Support page-based result pagination
- Return titles, snippets, article URLs, and image URLs
- Suitable for Korean news discovery and custom news result workflows
Use XCrawl to Fetch Naver News Search Results
Usage
curl -s -X POST 'https://run.xcrawl.com/v1/data' \
-H 'Authorization: Bearer $XCRAWL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"engine": "naver_news_search",
"location": "US",
"query": "cat",
"start": 1
}'Request parameter notes:
enginemust benaver_news_searchlocationspecifies the target regionqueryis the news search keywordstartspecifies the start page
Response Example
{
"results": [
{
"title": "Cat-exclusive Expo",
"content": "Incheon will host its first-ever cat-exclusive exhibition...",
"content_href": "https://news.ifm.kr/news/articleView.html?idxno=465440",
"image_src": "https://search.pstatic.net/common/?src=..."
}
]
}Parameters
Required Parameters
| Parameter | Type | Description |
|---|---|---|
location | string | Specifies the target region. |
query | string | News search keyword. |
start | number | Start page number. |
Parameter Notes
locationdefaults toUSstartdefaults to1
Response Fields
Response data is returned under results[].
| Field | Type | Description |
|---|---|---|
title | string | News title. |
content | string | News snippet or summary text. |
content_href | string | Article URL. |
image_href | string | Page URL associated with the image. |
image_src | string | Image URL. |
title_href | string | Click-through URL from the title. |
