# Twitter X Follow Verification

> Twitter X Follow Verification is a paid API for AI agents from x402-xapi.onrender.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Checks whether a given Twitter/X account follows another specific Twitter/X account, returning a boolean result.

## Facts

- Endpoint: POST https://x402-xapi.onrender.com/x402/twitter/following
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-x-follow-verification-a62163cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RDch4zRh7xR3xrjorl8i1

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-follow-verification-a62163cc -d '<json body>'
```

Example prompt: Can you check if the Twitter account @elonmusk follows @NASA on X?

## When to prefer this

Use this endpoint when you need to programmatically verify a Twitter/X follow relationship between two specific accounts, such as for gated access, community verification, or social proof workflows. Prefer this over scraping or manual checks when you need a reliable, paid API-backed answer at $0.05 USDC per call.

## Known failure modes

- Invalid or non-existent username returns error or false result
- Twitter API rate limiting causing delayed or failed response
- Private/suspended account may return indeterminate result
- Payment failure (insufficient USDC balance) blocks the request
- Network timeout from the hosted service on Render

## How this service works

Checks if one Twitter X account follows another on X.

## Output

Returns a JSON object with a single boolean field `follow`: true if source_username follows target_username on X, false otherwise.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "source_username",
  "target_username"
 ],
 "properties": {
  "source_username": {
   "type": "string",
   "description": "Twitter username of the follower"
  },
  "target_username": {
   "type": "string",
   "description": "Twitter username of the account being followed"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "example": {
  "follow": true
 },
 "properties": {
  "follow": {
   "type": "boolean",
   "description": "True if the source account follows the target account"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-x-follow-verification-a62163cc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-xapi.onrender.com](https://www.zero.xyz/host/x402-xapi.onrender.com/llms.txt)
