TikTok Shop
TikTok Shop Categories
The global TikTok Shop category tree: 28 top-level categories, 240 nodes, two levels deep. Each node carries its category_id, English display name, URL slug, level, parent_id, and image, as JSON. Category ids are identical in every region and names are always English, which is why this endpoint takes no region parameter. Feed a category_id straight into TikTok Shop Category Products. Costs 1 credit per request.
POST/api/v1/tiktok-shop/categories
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonRequest
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.tiktok_shop.categories()
print(results)Response
"total_categories": 240
},
"response_time": 780,
"credits_used": 1,
"credits_remaining": 4815
}