Dedicated APIsNaverNaver Composite Card Search

Endpoint

  • URL: https://api.syphoon.com
  • Method: POST
  • Sample POST Body for API URL:
    {
      "url": naver_api_url,
      "key": syphoon_key,
      "method": "GET"
    }

Explanation:

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://search.shopping.naver.com/ns/v1/search/paged-composite-cards?cursor=1&pageSize=50&query=10007104&searchMethod=displayCategory.basic&isCatalogDiversifyOff=true&hiddenNonProductCard=false&hasMoreAd=false&onlySecondhand=false&onlyRental=false&onlyOversea=false",
    "method": "GET"
}'