Dedicated APIsTikTokTiktok Shop Keyword Search

Tiktok Shop Keyword Search Syphoon API Documentation

Endpoint

  • URL: https://api.syphoon.com
  • Method: POST
  • Sample POST Body for API URL:
    {
     "url": "https://www.tiktok.com",
     "keyword": search_keyword,
     "key": syphoon_key,
     "method": "GET",
     "pagination": page_num
    }

Explanation:

  • URL : Should always be set to “https://www.tiktok.com” for search.
  • Keyword : The search keyword
  • Key : Syphoon API Key present in your Syphoon Dashboard
  • Method : Should always be set to “GET” for search
  • Pagination : Search page number

You can change the value of pagination to get search results from subsequent pages.

Returned data:

JSON data as returned from TikTok API

Sample code snippets:

curl --location 'https://api.syphoon.com' \
--header 'Content-Type: application/json' \
--data '{
"url": "https://www.tiktok.com",
"keyword": "laptop",
"pagination": 1,
"key": "SYPHOON_KEY",
"method": "GET"
}'