# Naver Blog Search API (https://www.socialcrawl.dev/platforms/naver/blog-search) > Searches naver.com/blog — Korea's dominant long-form blogging platform. Returns ranked posts under `data.items[]` with `title`, `link`, `description` (both HTML-tagged with `` around matched keywords), `bloggername`, `bloggerlink`, and `postdate` (YYYYMMDD). TL;DR: `GET /v1/naver/blog/search` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `query` | yes | Free-text search term (UTF-8). Required. | | `display` | no | Number of items to return per page. Defaults to 10. Standard cap 100 (local corpus caps at 5). | | `start` | no | 1-indexed offset for pagination. Defaults to 1. Standard cap 1000 (local corpus caps at 1). | | `sort` | no | Sort order. Accepted values: sim\|date. Defaults to `sim` (relevance) when the corpus supports sort. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/naver/blog/search?query=%EC%86%8C%EC%85%9C%ED%81%AC%EB%A1%A4" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I access the Naver Blog API? Send a GET request to /v1/naver/blog/search with your search term in the required query parameter. SocialCrawl returns matching blog.naver.com posts including title, link, description, blogger name, blogger link, and postdate — all under data.items. ### What fields does the Naver Blog endpoint return? Each item includes title, link, description, bloggername, bloggerlink, and postdate in YYYYMMDD format. The title and description fields come HTML-tagged with around the matched query terms, so you can render highlights directly. ### Can I sort and paginate Naver blog results? Yes. Set sort to sim (relevance, the default) or date (newest first). Use display to set page size and start as the offset to page through results. This lets you walk a keyword's full blog history beyond the first page. ### Why search Naver Blog instead of a general blog API? Naver Blog is Korea's dominant long-form blogging platform, so it holds Korean product reviews, travel logs, and recipes that Western engines miss. Searching it directly is the most reliable way to pull authentic Korean-language blog content at scale. ### How much does a Naver Blog API call cost? Each Naver Blog search costs 1 credit on the standard tier, no matter how many posts come back. New accounts start with 100 free credits and no credit card, so you can run roughly 100 blog searches before paying anything. See the full Naver API: https://www.socialcrawl.dev/platforms/naver ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How do I access the Naver Blog API? - How does SocialCrawl's Naver Blog API compare to the official Naver Open API?