Skip to main content
POST
/
api
/
tiktok
/
shops
/tiktok/shops
curl --request POST \
  --url https://api.anysite.io/api/tiktok/shops \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "shop": "<string>",
  "timeout": 300
}
'
[
  {
    "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>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
shop
string
required

TikTok Shop seller ID ('7494435026072274546') or full shop URL.

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

"7494435026072274546"

"https://shop.tiktok.com/us/store/x/7494435026072274546"

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_shop
name
string | null
image
string | null
description
string | null
rating
number | null
region
string | null
sold_count
integer | null
product_count
integer | null
review_count
integer | null
follower_count
integer | null
video_count
integer | null
shop_url
string | null