# SocialFetch TikTok Profile Following List

> SocialFetch TikTok Profile Following List 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).

Returns a paginated list of accounts that a given TikTok profile follows, identified by handle.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/tiktok/profiles/:handle/following
- 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-following-list-e03b80c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UvYVAKMV_5Plcbp_tA-7E

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-following-list-e03b80c3
```

Example prompt: Can you pull the full list of accounts that TikTok user @charlidamelio is following?

## When to prefer this

Use this endpoint when you need to enumerate the accounts that a specific TikTok user follows, for purposes such as social graph mapping, influencer relationship analysis, or competitor research. Prefer this over manual scraping or general-purpose web search when you need structured, paginated account data tied to a specific TikTok handle.

## Known failure modes

- Handle not found — TikTok profile does not exist or has been deleted
- Handle is private — account's following list is not publicly accessible
- Invalid handle format — handle fails minLength/maxLength validation
- Invalid cursor — pagination cursor is expired or malformed
- Rate limiting — too many requests in a short period
- Payment failure — x402 payment not processed correctly

## How this service works

List accounts followed by a TikTok profile by handle.

## Output

A paginated list of TikTok accounts followed by the specified profile, including account details such as usernames and profile metadata. A pagination cursor is returned if more results are available.

## 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 following list should be listed."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "trim": {
       "type": "boolean",
       "description": "Optional flag for a smaller response with fewer fields."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Pagination cursor returned by a previous response."
      }
     }
    }
   },
   "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-following-list-e03b80c3/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)
