Naver Search All Next Data Syphoon API Documentation
Endpoint
- URL:
https://api.syphoon.com
- Method:
POST
- Sample POST Body for API URL:
{ "url": naver_api_url, "key": syphoon_key, "method": "GET" }
Explanation:
- URL :Naver _Next Data API from Search Page (e.g. https://shopping.naver.com/_next/data/kr1olLhwDDSee4Q7N-ZsF/ns/home.json?demo=NOT_LOGIN&client=BROWSER&deviceType=MOBILE) 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 with two keys:
- data : the data returned by Naver API
- status_code_returned : status code returned by Naver API.
Sample cURL:
curl --location 'https://api.syphoon.com' \
--header 'Content-Type: application/json' \
--data '{
"key": "SYPHOON_KEY",
"url": "https://shopping.naver.com/_next/data/kr1olLhwDDSee4Q7N-ZsF/ns/home.json?demo=NOT_LOGIN&client=BROWSER&deviceType=MOBILE",
"method": "GET"
}'