Naver Image Search
Naver Image Search is used to fetch image search results from Naver.
- Fetch image results by keyword
- Support page-based result pagination
- Return titles, landing pages, and original image URLs
- Suitable for media discovery and custom image result workflows
Use XCrawl to Fetch Naver Image 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_images_search",
"location": "US",
"query": "cat",
"start": 1
}'Request parameter notes:
enginemust benaver_images_searchlocationspecifies the target regionqueryis the image search keywordstartspecifies the start page
Response Example
{
"results": [
{
"title": "Cat Redhead Pet",
"link": "https://pixabay.com/photos/cat-redhead-pet-animals-housecat-3624815/",
"original_url": "https://cdn.pixabay.com/photo/...jpg",
"writer_title": "pixabay.com"
}
]
}Parameters
Required Parameters
| Parameter | Type | Description |
|---|---|---|
location | string | Specifies the target region. |
query | string | Image 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 | Result title. |
link | string | Landing page URL. |
original_url | string | Original image URL. |
viewer_thumb | string | Preview image URL. |
writer_title | string | Source site or publisher name. |
date_info | string | Date text shown in the result. |
