Naver Blog search API
Search up to five enriched Naver blog results by keyword with stable cursor pagination: result rank, title, excerpt, post and blogger URLs, blogger name, publish time, and Naver's total match count.
Call it
Make your first request
import os, requests res = requests.post( "https://api.getanyapi.com/v1/run/naver.blog_search", headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"}, json={ "query": "" }, ) print(res.json())
{
"data": {
"items": [
{
"bloggerName": "Example title",
"bloggerUrl": "https://example.com/page",
"createdUtc": 12.5,
"description": "A short example description of this item.",
"rank": 1,
"title": "Example title",
"url": "https://example.com/page"
}
],
"nextCursor": "example",
"total": 12500
},
"found": true
}interface NaverBlogSearchResponse {
data: {
items: {
bloggerName: string;
bloggerUrl: string;
createdUtc: number;
description: string;
rank: number;
title: string;
url: string;
}[];
nextCursor: string | null;
total: number;
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-14 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/naver.blog_search \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"limit":5,"query":"제주도 맛집","sort":"relevance"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| query | string | "제주도 맛집"Keyword phrase to search across Naver blogs. |
| cursor | string | Opaque pagination cursor from a previous response's nextCursor. |
| limit | integer | 5Maximum number of title-enriched posts to return, from 1 to 5 (default 5). |
| sort | enum | "relevance"Order posts by Naver relevance or newest publication date (default relevance). |
| Response | ||
| data | object | The result wrapper, or null when nothing was found. |
| data.items | object[] | Blog posts in Naver's requested search order. Populated whenever the provider has data for the entity. |
| data.items[].bloggerName | string | Blogger display name. |
| data.items[].bloggerUrl | string | Public root URL for the blog that published the post. |
| data.items[].createdUtc | number | Publication date as a UTC epoch timestamp in seconds. |
| data.items[].description | string | Search-result excerpt from the post. |
| data.items[].rank | integer | One-based rank within this result page. |
| data.items[].title | string | Blog post title. |
| data.items[].url | string | Public blog post URL. |
| data.nextCursor | string | Opaque cursor for the next page, or an empty string when no next page is available. |
| data.total | integer | Naver's reported number of matching blog posts. |
| found | boolean | True when Naver returned at least one matching blog post. |
| Price | ||
| Price per request | USD | $0.036 |
| Price /1k req | USD | $36.00 |
FAQ
About the Naver Blog search API
The AnyAPI Naver Blog search API returns Naver blog search data as normalized JSON from one POST call to /v1/run/naver.blog_search. Search up to five enriched Naver blog results by keyword with stable cursor pagination: result rank, title, excerpt, post and blogger URLs, blogger name, publish time, and Naver's total match count. AnyAPI returns one normalized schema whichever source serves it. It costs from $36 per 1,000 requests, in US dollars with no subscription and no monthly minimum.