Naver Product and Benefit Syphoon API Documentation
Endpoint
- URL:
https://api.syphoon.com
- Method:
POST
- Sample POST Body for API URL:
{ "url": naver_api_url, "product_url": naver_product_url, "key": syphoon_key, "method": "GET" }
Explanation:
- URL : Naver product API (e.g. https://smartstore.naver.com/i/v2/channels/2sWDxLqnqp7C0RMYb5dhT/products/10413579497?withWindow=false) or benefits API (e.g. https://smartstore.naver.com/i/v2/channels/2sWDwOHxhY0grwERj3Ilx/benefits/by-products/9960184249?categoryId=50000319).
- Product_URL : Corresponding Naver Product URL from which API is triggered
- Key : Syphoon API Key present in your Syphoon Dashboard.
- Method : Method should always be “GET”.
Returned data:
JSON with two keys:
- data : the data returned by Naver API
- status_code_returned : status code returned by Naver API.
Sample cURL:
curl --location 'https://naverapi.syphoon.com/' \
--header 'Content-Type: application/json' \
--data '{
"url": "https://smartstore.naver.com/i/v2/channels/2sWDvOMJt8KO2RJAoa750/products/294040523?withWindow=false",
"product_url": "https://smartstore.naver.com/seragio/products/294040523",
"key": "SYPHOON_KEY",
"method": "GET"
}'