# StableSocial TikTok Followers Scraper

> StableSocial TikTok Followers Scraper 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 the follower list for a TikTok user account by handle or user ID, with pagination support

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/tiktok/user/followers
- 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-followers-scraper-b2558138
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lZ0bA_AW8dvvsSWwRqYfG

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-followers-scraper-b2558138 -d '<json body>'
```

Example prompt: Can you pull the follower list for the TikTok account @charlidamelio — use her handle and give me a trimmed response?

## When to prefer this

Use this endpoint when you need programmatic, pay-per-request access to TikTok follower lists without managing TikTok API credentials or rate limits. Prefer this over the official TikTok API when you need scraping-level access without OAuth flows, or when building influencer analytics pipelines that require follower enumeration at scale. The user_id parameter offers faster response times when the ID is already known.

## Known failure modes

- Invalid or non-existent TikTok handle returns empty or error response
- Rate limiting or TikTok anti-scrape measures may cause intermittent failures
- Missing required 'handle' or 'user_id' field returns validation error
- Expired or invalid min_time pagination token may return duplicate or empty results
- Private TikTok accounts may return no follower data

## How this service works

Scrape Creators · TikTok — Followers

## Output

Returns a list of TikTok user profiles who follow the specified account, including profile metadata. Supports pagination via a min_time cursor returned in the response. Trimmed mode reduces payload size for faster processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean",
   "description": "Set to true to get a trimmed response"
  },
  "handle": {
   "type": "string",
   "description": "TikTok handle"
  },
  "user_id": {
   "type": "string",
   "description": "User id. Use this for faster response times."
  },
  "min_time": {
   "type": "number",
   "description": "Used to paginate. Get 'min_time' from previous response."
  }
 }
}
```

## More

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