# TikTok User Following List

> TikTok User Following List is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves the list of accounts that a given TikTok user is following, with optional pagination support

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/tiktok/user/following
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tiktok-user-following-list-e6abb101
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_izYJ-SDjCQjx-Qt6wuzNJ

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 tiktok-user-following-list-e6abb101
```

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 retrieve the list of accounts a specific TikTok user follows, especially for influencer research, social graph analysis, or monitoring creator relationships. Prefer this over general web scraping when you need structured TikTok following data with pagination support.

## Known failure modes

- Invalid or non-existent TikTok handle returns an error or empty list
- Private TikTok accounts may not expose following data
- Rate limiting or TikTok anti-scraping measures may cause failures
- Missing required 'handle' query parameter results in a bad request
- Stale min_time cursor may return duplicate or empty results

## How this service works

Following

## Output

Returns a list of TikTok accounts that the specified user follows, including profile details for each followed account. Supports pagination via a min_time cursor returned in the response for fetching subsequent pages. A trimmed response option reduces the payload size.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "trim": {
       "type": "boolean",
       "description": "Set to true to get a trimmed response"
      },
      "handle": {
       "type": "string",
       "description": "TikTok handle"
      },
      "min_time": {
       "type": "number",
       "description": "Used to paginate. Get 'min_time' from previous response."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tiktok-user-following-list-e6abb101/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
