# Surf Twitter – Get Tweet Retweeters

> Surf Twitter – Get Tweet Retweeters is a paid API for AI agents from twitter.surf.cascade.fyi, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-08).

Retrieves a paginated list of users who retweeted a specific tweet, including their name, username, and follower count, via pay-per-use micropayment API.

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/tweets/%7Bid%7D/retweeters
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/surf-twitter-get-tweet-retweeters-59607c2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y12guPRDPfOxCmhUYmXrm

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 surf-twitter-get-tweet-retweeters-59607c2a
```

Example prompt: Who retweeted tweet ID 1895023847561234567? Pull the full list of retweeters with their usernames and follower counts.

## When to prefer this

Use this endpoint when you need to identify which users retweeted a specific tweet by ID, especially for audience analysis, influence mapping, or engagement auditing. Prefer this over scraping or full Twitter API v2 when you want pay-per-use pricing with no subscription, and when you have a known tweet ID and need paginated retweeter lists with follower counts.

## Known failure modes

- Tweet ID not found or deleted — empty data array or 404 error
- Tweet has no retweeters — empty data array with result_count 0
- Invalid tweet ID format — 400 bad request
- Payment failure via x402 — 402 Payment Required if funds are insufficient
- Rate limiting — 429 Too Many Requests if call quota exceeded
- Private or protected tweet — access denied / 403 error

## How this service works

Pay-per-use Twitter/X data API with x402 micropayments.

## Output

A JSON object containing a 'data' array of retweeting user objects (each with name, username, and followers_count) and a 'meta' object with result_count and has_next_page for pagination. Costs $0.004 USDC per call via x402 micropayment.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "name": "User One",
    "username": "user1",
    "followers_count": 1000
   }
  ],
  "meta": {
   "result_count": 20,
   "has_next_page": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/surf-twitter-get-tweet-retweeters-59607c2a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.surf.cascade.fyi](https://www.zero.xyz/host/twitter.surf.cascade.fyi/llms.txt)
