# glim.sh Twitter Tweet Retweeters Lookup

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

Retrieves the list of users who retweeted a specific Twitter/X tweet by its ID, with no API keys required.

## Facts

- Endpoint: POST https://surf.cascade.fyi/api/v1/twitter/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/glim-sh-twitter-tweet-retweeters-lookup-4f06c424
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f5LqInjHYdAlXg86s48hQ

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 glim-sh-twitter-tweet-retweeters-lookup-4f06c424 -d '<json body>'
```

Example prompt: Who retweeted tweet ID 1234567890? Pull the full list of retweeter usernames and IDs from glim.sh without needing a Twitter API key.

## When to prefer this

Choose this endpoint when you need to identify users who retweeted a specific tweet without setting up Twitter API credentials or managing OAuth. Ideal for agents needing quick, pay-per-call access to Twitter engagement data, especially for one-off lookups, viral content analysis, or influencer tracking where a full API integration is impractical.

## Known failure modes

- Tweet ID not found or deleted — empty data array returned
- Invalid tweet ID format — request error
- Tweet has zero retweets — data array empty with result_count 0
- Rate limiting or payment failure — 402 or 429 error
- Private/protected tweet — access denied error

## How this service works

One remote endpoint gives your agent live data from Twitter, Reddit, the open web, GitHub and more. No API keys, no scraping stack - just connect the URL and go.

## Output

Returns a JSON object with a 'data' array of retweeter objects (each containing user 'id' and 'username') and a 'meta' object with 'result_count' indicating how many retweeters were returned.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "cursor": {
       "description": "Pagination cursor",
       "type": "string"
      }
     }
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "meta": {
       "type": "object",
       "properties": {
        "result_count": {
         "type": "integer",
         "minimum": -9007199254740991,
         "maximum": 9007199254740991
        },
        "has_next_page": {
         "type": "boolean"
        },
        "next_cursor": {
         "type": "string"
        }
       },
       "required": [
        "result_count"
       ]
      }
     },
     "required": [
      "data",
      "meta"
     ]
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": "44196397",
    "username": "cascade_fyi"
   }
  ],
  "meta": {
   "result_count": 1
  }
 }
}
```

## More

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