Skip to main content
POST
/
api
/
tiktok
/
products
/tiktok/products
curl --request POST \
  --url https://api.anysite.io/api/tiktok/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@tik_tok_product",
    "title": "<string>",
    "description": "<string>",
    "images": [],
    "price": 123,
    "currency": "<string>",
    "is_free_shipping": false,
    "sold_count": 123,
    "rating": 123,
    "review_count": 123,
    "categories": [],
    "brand": "<string>",
    "business_name": "<string>",
    "business_address": "<string>",
    "properties": [],
    "skus": [],
    "shop": {
      "id": "<string>",
      "@type": "@tik_tok_shop",
      "name": "<string>",
      "image": "<string>",
      "description": "<string>",
      "rating": 123,
      "region": "<string>",
      "sold_count": 123,
      "product_count": 123,
      "review_count": 123,
      "follower_count": 123,
      "video_count": 123,
      "shop_url": "<string>"
    },
    "product_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

TikTok Shop product ID ('1732298124411245170') or full product URL.

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|\d{10,30})$
Examples:

"1732298124411245170"

"https://shop.tiktok.com/us/pdp/x/1732298124411245170"

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
title
string | null
description
string | null
images
string[]
price
number | null
currency
string | null
is_free_shipping
boolean
default:false
sold_count
integer | null
rating
number | null
review_count
integer | null
categories
string[]
brand
string | null
business_name
string | null
business_address
string | null
properties
TikTokProductProperty · object[]
skus
TikTokProductSku · object[]
shop
TikTokShop · object
product_url
string | null