TikTok Shop Search API
Scrape TikTok Shop Search data with one API call. Searches TikTok Shop across every storefront for products matching a keyword, in any supported market. Each result is the same canonical product object `tiktokshop/products` returns, id, title, canonical URL, images, price and original price, rating, review count, sold count, seller, plus the merchandising signals only search carries: the seller trust label, where the item ships from, promotion badges, the category breadcrumb, and the demo video when the listing has one.
Last updated September 2026Maintained by the SocialCrawl team
Returns TikTok Shop products matching a keyword, in the same canonical shape products returns, plus the trust label, shipping origin, and promotion badges.
Use it to find products across every shop by keyword and region; products returns the catalogue of one named storefront instead.
Searching 65 platforms in parallel
What can you do with the Search API?
The Search endpoint gives you structured TikTok Shop data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/tiktokshop/search?query=phone+case"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/tiktokshop/search",
params={
'query': 'phone case',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/tiktokshop/search?query=phone+case",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| query | Yes | Search keyword or phrase to find TikTok Shop products |
| page | No | Page number to retrieve. Prefer passing back `pagination.next_cursor`, which carries the same position. |
| region | No | Region to search shop products in. Results, prices and currency follow the market; defaults to US. (US | GB | DE | FR | IT | ID | MY | MX | PH | SG | ES | TH | VN | BR | JP | IE) |
What does the TikTok Shop Search API return?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
Example response
{
"success": true,
"platform": "tiktokshop",
"endpoint": "/v1/tiktokshop/search",
"data": {
"items": [
{
"product": {
"id": "1732296765835481212",
"url": "https://www.tiktok.com/shop/pdp/1732296765835481212",
"title": "Magnetic Case with Camera Cover & Ring, Military-Grade Armor",
"description": null,
"seller": "TECHGODAS",
"brand": null,
"price": {
"current": 11.99,
"original": 21.99,
"currency": "USD"
},
"rating": {
"average": 4.4,
"count": null
},
"image_urls": [
"https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c7a3229c8d684435a482d4bc9eb1c71b~tplv-fhlh96nyum-crop-webp:450:600.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
],
"availability": null,
"reviews_count": null,
"ext": {
"seller_id": "7496201276702034044",
"sold_count": 1933,
"sku_id": null,
"tiktokshop": {
"promotion_labels": [
"Free shipping"
],
"category_breadcrumb": [
{
"category_id": 601739,
"category_name": "Phones & Electronics",
"level": 1
},
{
"category_id": 909064,
"category_name": "Mobile Phone Accessories",
"level": 2
}
],
"video_url": "https://v16m.tiktokcdn-us.com/6e3405d18f7a82f34367f9f2a1f89d5a/6a9e52bc/video/tos/useast5/tos-useast5-ve-0068c003-tx/o8U0yAfnSzEQ56RjEFgjIKii5kFJjpPkBYDfBr/?a=1233&bti=bmRidWZrdWgxaHdmKTR2KTc6OWZgbWFeK2BecGBxOmQuOm00NDA6&&bt=1715&ft=74~WHDTdNvjB5Xdlc_Y8sddOfzZqYl6Wwg_jhWLrK&mime_type=video_mp4&rc=NDs3ZTk5Njc6ZWVnN2k4aUBpajxmPGw5cjV4OjMzZzczNEBeNmFeXmI0XmExXy9hNTVjYSNwaHBuMmRzaDRhLS1kMS9zcw%3D%3D&vvpl=1&l=20260906235855F86B7C6B319788EA3BC7&btag=e000b8000",
"discount_percent": 45
}
}
}
},
{
"product": {
"id": "1729500484885844742",
"url": "https://www.tiktok.com/shop/pdp/1729500484885844742",
"title": "MAGICJOHN Magnetic Phone Case with 360° Rotating Aluminium Stand",
"description": null,
"seller": "MAGIC JOHN",
"brand": null,
"price": {
"current": 8.98,
"original": null,
"currency": "USD"
},
"rating": {
"average": 4.5,
"count": null
},
"image_urls": [
"https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4415ea782ea0432c9be497819b84e17c~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
],
"availability": null,
"reviews_count": null,
"ext": {
"seller_id": "7495468182119418630",
"sold_count": 101581,
"sku_id": null,
"tiktokshop": {
"trust_label": "blue_v",
"promotion_labels": [
"Free shipping"
]
}
}
}
}
],
"total": null,
"dropped": 0
},
"credits_used": 1,
"request_id": "req_example000000",
"cached": false,
"pagination": {
"next_cursor": "sc.eyJ2IjoyLCJjIjoiMiIsImUiOiJ0aWt0b2tzaG9wL3NlYXJjaCIsInAiOiJwYWdlIn0",
"has_more": true,
"page_size": 30
},
"credits_remaining": 9999
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the TikTok Shop Search API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 65 platforms covering 10B+ monthly active users.
One schema, every platform
Query 65 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow do I search TikTok Shop products with an API?
Which TikTok Shop regions does the search endpoint support?
What fields does each TikTok Shop search result include?
How do I paginate through TikTok Shop search results?
How much does the TikTok Shop Search API cost?
Ask AI about SocialCrawl
Ready to scrape TikTok Shop Search data?
Get your API key and start pulling TikTok Shop data in under 60 seconds.
