Naver Shopping Search Data Syphoon API Documentation
Endpoint
- URL:
https://naverapi.syphoon.com - Method:
POST - Sample POST Body for API URL:
{ "url": naver_search_api_url, "key": syphoon_key, "method": "GET" }
Explanation:
- URL :Naver Search API URL for /search/all endpoint (e.g. https://search.shopping.naver.com/api/search/all?sort=rel&pagingIndex=4&pagingSize=40&viewType=list&productSet=total&query=laptop&origQuery=laptop&adQuery=laptop&iq=&eq=&xq=&minPrice=700000&maxPrice=1400000). Please note that we only support data that is available without login.
- Key : Syphoon API Key present in your Syphoon Dashboard.
- Method : Method should always be “GET”.
Returned data: JSON data returned by Naver.
Sample code snippets:
curl --location 'https://naverapi.syphoon.com' \
--header 'Content-Type: application/json' \
--data '{
"key": "SYPHOON_KEY",
"url": "https://search.shopping.naver.com/api/search/all?sort=rel&pagingIndex=4&pagingSize=40&viewType=list&productSet=total&query=laptop&origQuery=laptop&adQuery=laptop&iq=&eq=&xq=&minPrice=700000&maxPrice=1400000",
"method": "GET"}'