# SocialFetch TikTok Shop Product Search

> SocialFetch TikTok Shop Product Search is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Search TikTok Shop product listings by keyword, with optional region and pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/tiktok/shop/products/search
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-tiktok-shop-product-search-6ff1c72f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A3WvgOEjYEjaRh9dgX1AD

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 socialfetch-tiktok-shop-product-search-6ff1c72f
```

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

## When to prefer this

Use this endpoint when you need to search and discover products listed on TikTok Shop by keyword, especially when region-specific catalog filtering (US, UK, DE, etc.) or paginated browsing is required. Prefer this over generic web search when you need structured product data directly from TikTok Shop's catalog.

## Known failure modes

- Missing required 'query' parameter returns a validation error
- Invalid or unsupported region code returns an error or defaults to global catalog
- Empty query string (minLength violation) returns a 400 bad request
- Page number out of range returns an empty result set or error
- Network timeout or TikTok Shop API unavailability returns a 5xx error
- Exceeding query maxLength of 512 characters returns a validation error

## How this service works

Search products in TikTok Shop by keyword.

## Output

A list of TikTok Shop product listings matching the keyword query, including product details such as names, prices, images, and seller information, scoped to the specified region and page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "page": {
       "type": "integer",
       "maximum": 9007199254740991,
       "minimum": 1,
       "description": "1-based results page number. Omit to request the first page. Pagination is page-based."
      },
      "query": {
       "type": "string",
       "maxLength": 512,
       "minLength": 1,
       "description": "Search query text for TikTok Shop products."
      },
      "region": {
       "enum": [
        "US",
        "GB",
        "DE",
        "FR",
        "IT",
        "ID",
        "MY",
        "MX",
        "PH",
        "SG",
        "ES",
        "TH",
        "VN",
        "BR",
        "JP",
        "IE"
       ],
       "type": "string",
       "description": "Optional country or region code for the product search catalog."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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