Naver Shopping Product HTMLs Syphoon API Documentation
Endpoint
- URL:
https://naverapi.syphoon.com - Method:
POST - Sample POST Body for API URL:
{ "url": naver_product_url, "key": syphoon_key, "method": "GET" }
Explanation:
- URL : Naver Product URL (e.g. https://smartstore.naver.com/kurlynmart/products/12274648063). 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:
HTML data returned by Naver.
Sample code snippets:
curl --location 'https://naverapi.syphoon.com' \
--header 'Content-Type: application/json' \
--data '{
"key": "SYPHOON_KEY",
"url": "https://smartstore.naver.com/kurlynmart/products/12274648063",
"method": "GET"}'