# StableSocial TikTok Shop Search

> StableSocial TikTok Shop Search is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-16).

Search TikTok Shop products by keyword and region, returning paginated product listings via pay-per-request access.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/tiktok/shop/search
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-tiktok-shop-search-a319ae88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w5w8KOWPoap4X0I_Xg3sf

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stablesocial-tiktok-shop-search-a319ae88 -d '<json body>'
```

Example prompt: Search TikTok Shop in the US for 'wireless earbuds' and show me the first page of results.

## When to prefer this

Choose this endpoint when you need programmatic, no-auth, pay-per-request access to TikTok Shop product search results across supported regions. It is ideal for market research, competitor analysis, trend discovery, and product intelligence workflows where you want to avoid managing API credentials or subscriptions. Prefer this over general web scraping when you need structured TikTok Shop data with regional filtering.

## Known failure modes

- Invalid or unsupported region code returns an error
- Empty or missing query string causes a validation failure
- Page number out of range may return empty results
- Payment failure (402) if USDC balance is insufficient
- Rate limiting or temporary scraping blocks from TikTok may cause intermittent failures
- Regions where TikTok Shop is not active may return empty result sets

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

A paginated list of TikTok Shop product listings matching the search query for the specified region, including product details such as names, prices, seller information, and other available metadata returned by the TikTok Shop search index.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number",
   "description": "Page number to retrieve"
  },
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "Term you want to search for"
  },
  "region": {
   "enum": [
    "US",
    "GB",
    "DE",
    "FR",
    "IT",
    "ID",
    "MY",
    "MX",
    "PH",
    "SG",
    "ES",
    "TH",
    "VN",
    "BR",
    "JP",
    "IE"
   ],
   "type": "string",
   "description": "Region to search shop products in."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-tiktok-shop-search-a319ae88/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
