Skip to main content
POST
/
api
/
tiktok
/
products
/
search
/tiktok/products/search
curl --request POST \
  --url https://api.anysite.io/api/tiktok/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 15,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@tik_tok_product_card",
    "title": "<string>",
    "image": "<string>",
    "price": 123,
    "currency": "<string>",
    "sold_count": 123,
    "rating": 123,
    "review_count": 123,
    "brand": "<string>",
    "seller_id": "<string>",
    "seller_name": "<string>",
    "alias": "<string>",
    "product_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
count
integer
required

Max number of products to return

Required range: 1 <= x <= 30
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@tik_tok_product_card
title
string | null
image
string | null
price
number | null
currency
string | null
sold_count
integer | null
rating
number | null
review_count
integer | null
brand
string | null
seller_id
string | null
seller_name
string | null
alias
string | null
product_url
string | null