# StableSocial TikTok User Search

> StableSocial TikTok User 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-14).

Search TikTok for user accounts matching a keyword query, returning paginated results with user profile data.

## Facts

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

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-user-search-6f525a98 -d '<json body>'
```

Example prompt: Search TikTok for users related to 'sustainable fashion' and give me a trimmed list of the top accounts you find.

## When to prefer this

Choose this endpoint when you need to discover or enumerate TikTok user accounts by keyword without managing OAuth, subscriptions, or API credentials. Ideal for influencer research, niche audience mapping, and creator outreach pipelines. Prefer over scraping solutions when you need structured, pay-per-call access with no upfront commitment.

## Known failure modes

- Empty query string causes validation error (minLength:1 required)
- Invalid or expired cursor returns no results or an error
- Query returns zero results for very niche or misspelled terms
- Rate limit or payment failure returns 402 or 429 status
- Service unavailability returns 5xx error

## 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 list of TikTok user objects matching the search query, including profile details such as username, display name, follower count, and other account metadata. If paginating, includes a cursor value to fetch the next page of results. Trimmed mode reduces payload size by returning only essential fields.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean",
   "description": "Set to true to get a trimmed response"
  },
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "Search query for users"
  },
  "cursor": {
   "type": "number",
   "description": "Cursor to get more users. Get 'cursor' from previous response."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-tiktok-user-search-6f525a98/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)
