# glim.sh Twitter Verified Followers

> glim.sh Twitter Verified Followers 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).

Retrieves the list of verified (blue-check) followers for a given Twitter/X user

## Facts

- Endpoint: POST https://glim.sh/api/v1/twitter/users/:ref/verified_followers
- 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-verified-followers-07f82dc8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FfTxQ3XVcvNslBuPngiBM

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-verified-followers-07f82dc8 -d '<json body>'
```

Example prompt: Can you pull the verified followers for the Twitter account @elonmusk so I can see which blue-check accounts are following them?

## When to prefer this

Use this endpoint when you specifically need to filter a user's followers to only verified/blue-check accounts, such as for influencer credibility analysis, audience quality assessment, or identifying high-profile followers. Prefer over general follower endpoints when the distinction of verified status is important to the use case.

## Known failure modes

- User not found — invalid or non-existent Twitter username/ID returns a 404 or error response
- Rate limiting — Twitter API rate limits may cause throttling or empty responses
- Private account — followers list unavailable for protected Twitter accounts
- Payment failure — x402 micropayment not processed, request blocked
- No verified followers — account exists but has zero verified followers, returns empty list

## How this service works

Verified followers only

## Output

A list of verified (blue-checkmark) Twitter/X user profiles that follow the specified account, including user metadata such as usernames, display names, and profile details for each verified follower.

## 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-verified-followers-07f82dc8/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)
