# StableSocial TikTok Shop Products

> StableSocial TikTok Shop Products 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).

Retrieves a paginated list of products from a TikTok Shop store URL, with optional region and sort order controls.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/tiktok/shop/products
- 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-products-aac1eb32
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mX5ltt3vzhssO0tG_1vz9

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-products-aac1eb32 -d '<json body>'
```

Example prompt: Pull the full product catalog from this TikTok Shop — https://www.tiktok.com/@somebrands/shop — sorted by top sellers in the US market.

## When to prefer this

Use this endpoint when you need structured product data from a specific TikTok Shop storefront without authentication or a subscription. It is ideal for competitive analysis, influencer research, or e-commerce monitoring tasks where TikTok Shop inventory is the target. Prefer this over general web scraping when you need clean, paginated product data with region and sort controls.

## Known failure modes

- Invalid or non-existent TikTok Shop URL returns an error or empty result
- Unsupported region code causes a validation error
- Expired or invalid cursor value breaks pagination
- Rate limiting or TikTok-side blocking may cause scrape failures
- Shop may have no products listed, returning an empty array

## How this service works

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

## Output

Returns a paginated list of products from the specified TikTok Shop, including product details such as names, prices, images, and other listing metadata, along with a cursor for retrieving subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "minLength": 1,
   "description": "The TikTok Shop store URL."
  },
  "cursor": {
   "type": "string",
   "description": "Cursor parameter from the previous response to retrieve the next page of products. Omit for the first page."
  },
  "region": {
   "enum": [
    "US",
    "GB",
    "DE",
    "FR",
    "IT",
    "ID",
    "MY",
    "MX",
    "PH",
    "SG",
    "ES",
    "TH",
    "VN",
    "BR",
    "JP",
    "IE"
   ],
   "type": "string",
   "description": "Region to get shop products from. Defaults to US if not provided."
  },
  "sort_by": {
   "enum": [
    "top",
    "new_releases"
   ],
   "type": "string",
   "description": "Sort products by best-selling items (`top`) or newest products (`new_releases`). Defaults to `top`."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-tiktok-shop-products-aac1eb32/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)
