EveryData platform API
Naver API
Naver separates Blog and Cafe articles, article comments, and Place visitor reviews across four actions: `search`, `post`, `comments`, and `reviews`.
Start with `search` for matching Naver results and move to `post` for a specific public post. Use `keyword` for search queries and `url` for individual posts to keep the two response shapes distinct.
- Endpoint
- POST /api/v1/social
- Capabilities
- 4
- Per 1,000
- $1.389
Available capabilities
Compare the Naver actions by required input, returned data, and price. Use the action identifier exactly as shown in your request.
| Action | Required | Optional | Delivery | Limit | Per 1,000 | Response fields |
|---|---|---|---|---|---|---|
searchSearch Search public results on Naver. Accepts these parameters: | keyword | content_type, sort | Sync delivery | Catalog values: defaultLimit=10, maxLimit=20. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count. | $1.39 per 1,000 requests | source · title · url · text · author_name · author_url · cafe_name · category · like_count · comment_count · posted_at · has_video · is_sponsored · platform |
postPost details Retrieve a public post from Naver. Accepts these parameters: | url | content_type, sort | Sync delivery | — | $1.39 per 1,000 requests | source · title · url · text · author_name · author_url · cafe_name · category · like_count · comment_count · posted_at · has_video · is_sponsored · platform |
commentsComments Retrieve public comments from Naver. Accepts these parameters: | url | content_type, sort | Sync delivery | — | $1.39 per 1,000 requests | author_name · text · posted_at · is_reply · platform |
reviewsReviews Retrieve public reviews from Naver. Accepts these parameters: | url | keyword | Sync delivery | Catalog value: maxLimit=200. Check the action notes before treating it as a final row count. | $1.39 per 1,000 requests | id · place_id · place_name · text · rating · rating_scale · visited_at · posted_at · visit_count · view_count · item_name · origin_type · language · owner_reply · author_id · author_name · author_review_count · place_total_reviews · place_average_rating · platform |
What does each Naver action accept?
Each answer below pairs one callable action with its real inputs. Parameter meanings and allowed values are action-specific; a familiar name does not carry the same meaning across every platform.
Official sources are linked only to clarify the platform term beside them. They do not imply platform authorization or endorsement, and they do not add official-site features to the EveryInfra API contract.
What do the Naver search parameters mean?
Search public results on Naver. Accepts these parameters: content_type, sort, and keyword. Returns these fields: author_url, source, is_sponsored, and author_name.
What do the Naver post parameters mean?
Retrieve a public post from Naver. Accepts these parameters: content_type, sort, and url. Returns these fields: cafe_name, author_name, like_count, and title.
What do the Naver comments parameters mean?
Retrieve public comments from Naver. Accepts these parameters: sort, url, and content_type. Returns these fields: text, posted_at, is_reply, and author_name.
What do the Naver reviews parameters mean?
Retrieve public reviews from Naver. Accepts these parameters: keyword and url. Returns these fields: rating, owner_reply, rating_scale, and place_id.
How to use the Naver API
- 01Read the public catalog and choose a platform action.
- 02Send the platform, action, and required parameters to POST /api/v1/social.
- 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
- 04Store the structured response fields needed by your application.
curl -X POST https://api.everyinfra.com/api/v1/social \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"platform":"naver","action":"search","params":{"keyword":"<keyword>"}}'
Naver API questions
What can I retrieve with the Naver API?
Set platform to naver. The current catalog lists search, post details, comments, and reviews. These action names identify different Naver objects or views; they are not interchangeable search modes.
Which input starts a Naver `search` request?
Specifies Korean or other search keywords to query Naver Blog and Naver Cafe content for the search action. It does not perform full-text search across map merchant reviews in the reviews action. Send it as keyword inside params.
Which fields can Naver `search` return?
Its declared schema includes source, title, text, and author_name. A declared field can still be absent from an individual source record, and every other action has its own field list.
Does every Naver action return immediately?
No assumption is needed: this page labels each action's delivery mode. The current catalog contains sync delivery; poll a returned job ID only for an action labeled asynchronous.