100 free credits. No credit card required.Start building
Logo
TikTok Shop logo
100 free credits. No credit card required

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

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
TikTok Shop API

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

ParameterRequiredDescription
queryYesSearch keyword or phrase to find TikTok Shop products
pageNoPage number to retrieve. Prefer passing back `pagination.next_cursor`, which carries the same position.
regionNoRegion 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)
Example Response

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.

API Details

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

Why SocialCrawl

Why use SocialCrawl for TikTok Shop Search data?

We handle the complexity of TikTok Shop data extraction so you can focus on building. Unified schema, AI enrichment, and zero platform logic in your code.

Developer First

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()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 65 platforms
FAQ

Have a question? We got answers

Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.

Contact us
How do I search TikTok Shop products with an API?
Send a GET request to /v1/tiktokshop/search with the query parameter set to your keyword. SocialCrawl returns a paginated list of matching products with prices, ratings, review counts, and seller info.
Which TikTok Shop regions does the search endpoint support?
16 regions including US, GB, DE, FR, IT, ID, MY, MX, PH, SG, ES, TH, VN, BR, JP, and IE. Pass the region parameter with the 2-letter ISO code to scope the search to that market.
What fields does each TikTok Shop search result include?
Each result returns product id, title, price, currency, rating, review count, sold count, primary image URL, seller name, and a deep link to the product page, in exactly the same unified product schema the shop listing returns, plus search-only signals like the seller trust label and shipping origin.
How do I paginate through TikTok Shop search results?
Pass back pagination.next_cursor from the previous response until has_more is false. Rows are de-duplicated across pages, so a page-and-concatenate crawl does not pay for products it already has.
How much does the TikTok Shop Search API cost?
Each request costs 1 credit on the standard tier regardless of how many products are returned per page. New accounts get 100 free credits with no credit card required.

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.

Start for free

🤖 AI agent or LLM? Read this page as markdown