# Naver Shop Search API (https://www.socialcrawl.dev/platforms/naver/shop-search) > Searches shopping.naver.com — Naver's price-comparison shopping aggregator (analog of Google Shopping for the Korean market). Returns products under `data.items[]` with `title`, `link`, `image`, `lprice` (low price, KRW), `hprice` (high price), `mallName` (merchant), `productId`, `productType`, `brand`, `maker`, and four `category` levels. TL;DR: `GET /v1/naver/shop/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\|asc\|dsc (asc/dsc = price asc/desc). Defaults to `sim` (relevance) when the corpus supports sort. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/naver/shop/search?query=%EB%85%B8%ED%8A%B8%EB%B6%81" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### Can I search Naver Shopping prices via API? Yes. Send a GET request to /v1/naver/shop/search with a product keyword in the query parameter. SocialCrawl queries the shopping.naver.com price-comparison aggregator and returns lprice, hprice, mall name, brand, maker, and category for each listing. ### What fields does the Naver Shopping endpoint return? Each item includes title, link, image, lprice (lowest price) and hprice (highest price) in KRW, mallName, productId, productType, brand, maker, and four category levels. This is enough to build price-tracking and product-matching pipelines. ### Can I sort Naver Shopping results by price? Yes. sort accepts sim (relevance), date (newest), asc (price low to high), and dsc (price high to low). Combine asc with display and start to page through the cheapest listings for a product across Korean malls. ### What is Naver Shopping comparable to? Naver Shopping is Korea's leading price-comparison aggregator — the closest analog to Google Shopping for the Korean market. It pulls listings from thousands of malls into one feed, making it the go-to source for Korean ecommerce price data. ### How much does the Naver Shopping API cost? Each Naver Shopping search costs 1 credit on the standard tier, regardless of result count. New accounts get 100 free credits with no credit card, plenty to test price tracking across products before you commit to a paid plan. 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: - Can I search Naver Shopping prices via API? - What is the SocialCrawl Naver Shopping API?