# SocialFetch TikTok Creator Showcase Products

> SocialFetch TikTok Creator Showcase Products 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).

List all products featured in a TikTok creator's profile showcase by their handle.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/tiktok/profiles/:handle/showcase-products
- 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-creator-showcase-products-ece6f194
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kSdl754EUSpf_jcoUcCx9

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-creator-showcase-products-ece6f194
```

Example prompt: What products is @charlidamelio currently featuring in her TikTok profile showcase?

## When to prefer this

Use this endpoint when you need to enumerate all products a specific TikTok creator is actively showcasing on their profile, especially for influencer research, competitive analysis, or affiliate product discovery. Prefer this over the TikTok Shop store endpoint when you have a creator handle rather than a shop ID, and you want their curated showcase specifically rather than their full store inventory.

## Known failure modes

- TikTok handle not found — returns 404 or empty product list
- Creator has no showcase products configured — returns empty list
- Invalid or missing handle parameter — returns 400 validation error
- Invalid pagination cursor — returns error or unexpected results
- Rate limit exceeded — returns 429 too many requests
- TikTok platform changes causing data unavailability — returns 503 or partial data

## How this service works

List products featured on a creator's TikTok showcase by handle.

## Output

A paginated list of products displayed on the specified TikTok creator's showcase tab, including product details such as names, IDs, prices, and links. A pagination cursor may be returned to retrieve additional results.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "maxLength": 128,
       "minLength": 1,
       "description": "TikTok handle whose profile showcase products should be listed."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Pagination cursor returned by a previous response."
      },
      "region": {
       "type": "string",
       "description": "Optional ISO 3166-1 country code for the request."
      }
     }
    }
   },
   "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-creator-showcase-products-ece6f194/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)
