# Naver Shopping Insight Keyword API (https://www.socialcrawl.dev/platforms/naver/shopping-insight-keyword) > Returns a relative click-share time series for up to 3 search keywords WITHIN one Naver Shopping category, under `data.results[].data[]` as `{period, ratio}` pairs. Set `breakdown` to split a single keyword by `device`, `gender`, or `age`. This is the endpoint for questions like which product term is gaining share inside 패션의류. `ratio` is a relative index within the requested window, not an absolute count. A keyword with no measurable clicks returns no data points and is not charged. TL;DR: `GET /v1/naver/shopping-insight/keyword` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `category_code` | yes | A single Naver Shopping category id to search within (e.g. `50000000`). Required. | | `keyword` | yes | Comma-separated keywords, up to 3, compared inside that category. Required. When `breakdown` is set, only the first keyword is used. | | `start_date` | no | Window start, `YYYY-MM-DD`. Defaults to 12 months before `end_date`. Clamped up to 2016-01-01. | | `end_date` | no | Window end, `YYYY-MM-DD`. Defaults to today. | | `time_unit` | no | Aggregation bucket: `date`, `week`, or `month` (default `month`). (date \| week \| month) | | `device` | no | Restrict to `pc` or `mo` (mobile). Omit for both. (pc \| mo) | | `gender` | no | Restrict to `f` or `m`. Omit for both. (f \| m) | | `ages` | no | Comma-separated age buckets: `10`, `20`, `30`, `40`, `50`, `60`. NOTE these differ from `search-trend`, which takes 0-11. | | `breakdown` | no | Split a single keyword by `device`, `gender`, or `age` instead of comparing several keywords. (device \| gender \| age) | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/naver/shopping-insight/keyword?category_code=50000000&keyword=%EC%BD%94%ED%8A%B8" \ -H "x-api-key: sc_YOUR_API_KEY" ``` 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