Dedicated APIsTikTokTiktok Shop Product Details

Tiktok Shop Product Details Syphoon API Documentation

Endpoint

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

Explanation:

  • URL : Product URL for Tiktok Shop.
  • Region : The region the product URL belongs to
  • Key : Syphoon API Key present in your Syphoon Dashboard
  • Method : Should always be set to “GET” for this API

Returned data:

JSON data as returned from TikTok API

Sample code snippets:

curl --location 'https://api.syphoon.com' \
--header 'Accept: /' \
--header 'Connection: keep-alive' \
--header 'Content-Type: application/json' \
--data '{
    "url": "https://www.tiktok.com/shop/my/pdp/1730225607774799603",
    "region": "my",
    "key": "SYPHOON_KEY",
    "method": "GET"
}'