# ReadX Mentions Feed

> ReadX Mentions Feed is a paid API for AI agents from readx.sh, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves tweets that mention a specific X/Twitter user, with cursor-based pagination.

## Facts

- Endpoint: GET https://readx.sh/api/:name/mentions
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/readx-mentions-feed-62d8a3f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NKVdFBt1QF3ABjMiDh9LE

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 readx-mentions-feed-62d8a3f3
```

Example prompt: Pull all the recent tweets mentioning @elonmusk from ReadX — paginate through all of them until there are no more results.

## When to prefer this

Use this endpoint when you need to retrieve tweets that mention a specific X/Twitter user, especially for monitoring brand mentions, tracking public discourse about an account, or paginating through a full mention history. Prefer this over a general search endpoint when you want mentions targeted specifically at one user handle rather than keyword-based results.

## Known failure modes

- Invalid or non-existent username returns an empty result or 404 error
- Username fails pattern validation (non-alphanumeric/underscore characters) returns a 400 bad request
- Invalid cursor value causes a pagination error
- Payment not processed results in 402 Payment Required
- Rate limiting or upstream X API unavailability returns a 429 or 503 error

## How this service works

Tweets that mention a user (paginate with cursor until has_more is false). Example: GET /api/jack/mentions

## Output

A JSON response containing a list of tweet objects that mention the specified user, along with a pagination object including a bottom cursor and a has_more boolean to continue fetching subsequent pages.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "pattern": "^[A-Za-z0-9_]+$",
       "minLength": 1,
       "description": "X handle without the leading @ (alphanumeric and underscore)."
      },
      "cursor": {
       "type": "string",
       "description": "Pagination cursor from a previous response's pagination.next_cursor (the conversation endpoint at /api/{name}/tweets/{id} instead takes its own nested reply cursor — see that endpoint)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/readx-mentions-feed-62d8a3f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from readx.sh](https://www.zero.xyz/host/readx.sh/llms.txt)
