# Twitter/X User Followers Fetcher (Orthogonal x402)

> Twitter/X User Followers Fetcher (Orthogonal x402) is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Fetches a paginated list of followers for a given Twitter/X user handle, with cost-efficient continuation billing for subsequent pages.

## Facts

- Endpoint: POST https://x402.orthogonal.com/fiber/v1/twitter/user-followers
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-x-user-followers-fetcher-orthogonal-x402-055cde89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q6RRGDwsu9shYDh-RkbX9

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 twitter-x-user-followers-fetcher-orthogonal-x402-055cde89 -d '<json body>'
```

Example prompt: Can you pull the followers of the Twitter account @naval and page through all of them?

## When to prefer this

Use this endpoint when you need to programmatically retrieve the follower list of a Twitter/X account with pagination support, especially when you want cost-efficient multi-page traversal via Orthogonal's parentRequestId billing model. Prefer this over generic scraping when you need structured follower data at scale without worrying about repeated full charges per page.

## Known failure modes

- Invalid or non-existent Twitter handle returns an error or empty result
- Rate limiting or suspended accounts may yield no data
- Passing a changed handle or filter with parentRequestId starts a new billable request unexpectedly
- Missing cursor on subsequent page calls may restart pagination from the beginning
- Private/protected accounts may return no followers

## How this service works

Fetches paginated followers of a Twitter/X user. Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a paginated list of Twitter/X followers for the specified handle, including follower user profile data and a cursor for fetching subsequent pages. The Orthogonal billing response includes a requestId to use as parentRequestId for free continuation pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor. For later cursor pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
  },
  "handle": {
   "type": "string",
   "description": "Twitter/X handle."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-x-user-followers-fetcher-orthogonal-x402-055cde89/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)
