# glim.sh Twitter Tweet Retweeters

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

Returns a list of users who retweeted a specific tweet by tweet ID

## Facts

- Endpoint: POST https://glim.sh/api/v1/twitter/tweets/:id/retweeters
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glim-sh-twitter-tweet-retweeters-f157bd58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qRh5d8PsDD8Lyw7V32xvV

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-f157bd58 -d '<json body>'
```

Example prompt: Who retweeted the tweet with ID 1823456789012345678? I want to see the list of users who shared it.

## When to prefer this

Use this endpoint when you need to identify the specific users who retweeted a tweet — useful for audience analysis, influencer identification, tracking viral spread, or monitoring who is amplifying specific content on Twitter/X. Prefer this over the verified-followers-only endpoint when you want all retweeters regardless of verification status.

## Known failure modes

- Invalid or non-existent tweet ID returns an error or empty result
- Tweet is from a private/protected account, making retweeters inaccessible
- Rate limiting or payment failure for x402 micropayment
- Tweet has been deleted since being retweeted
- Pagination may be needed for tweets with very large retweet counts

## How this service works

Users who retweeted

## Output

A list of Twitter/X user objects representing accounts that retweeted the specified tweet, likely including usernames, user IDs, and profile metadata.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "description": "Pagination cursor"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "meta": {
       "type": "object",
       "required": [
        "result_count"
       ],
       "properties": {
        "next_cursor": {
         "type": "string"
        },
        "result_count": {
         "type": "integer",
         "maximum": 9007199254740991,
         "minimum": -9007199254740991
        },
        "has_next_page": {
         "type": "boolean"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

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