# SocialFetch TikTok Profile Followers Lister

> SocialFetch TikTok Profile Followers Lister 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).

Lists the followers of a TikTok profile by username handle, with pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/tiktok/profiles/:handle/followers
- 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-profile-followers-lister-904b84ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RwmbS9OVrlDUTvyXHJYMx

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-profile-followers-lister-904b84ec
```

Example prompt: Can you pull the list of followers for the TikTok account @charlidamelio? Use a compact response and paginate through the results starting from the beginning.

## When to prefer this

Use this endpoint when you need to enumerate or analyze the follower base of a specific TikTok profile by handle. Prefer this over general social media APIs when TikTok-specific follower data is required, especially for influencer research, audience analysis, or monitoring follower growth over time with pagination.

## Known failure modes

- Invalid or non-existent TikTok handle returns an error or empty result
- TikTok rate limiting or private account restrictions may block follower data
- Invalid pagination cursor causes a bad request or restart of pagination
- TikTok API changes or blocking may cause upstream failures
- Missing required handle path parameter returns a 400 or 422 error

## How this service works

List followers of a TikTok profile by handle.

## Output

Returns a paginated list of TikTok follower profiles for the specified handle, including follower account details. A pagination cursor is provided for fetching subsequent pages. The trim flag reduces the response payload to essential fields only.

## 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 followers should be listed."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "trim": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "Optional flag for a smaller response with fewer fields."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Pagination cursor returned by a previous response."
      },
      "userId": {
       "type": "string",
       "minLength": 1,
       "description": "Optional TikTok user id to speed up 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-profile-followers-lister-904b84ec/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)
