# ReadX Article Entities Endpoint

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

Extracts named entities (people, organizations, topics, etc.) from a specific article by its ID via the ReadX X/Twitter read API, paid per call with USDC micropayments.

## Facts

- Endpoint: GET https://readx.sh/api/article-entities/%7Barticle_id%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/readx-article-entities-endpoint-1f7a0124
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__u1rdrWG8ZoJehMcYhiS2

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-article-entities-endpoint-1f7a0124
```

Example prompt: Can you pull all the named entities — people, organizations, and topics — mentioned in this Twitter article with ID 1234567890 using ReadX?

## When to prefer this

Use this endpoint when you need structured named-entity extraction from a specific Twitter/X article or tweet by its ID, without needing a traditional API key, and you are comfortable paying $0.05 USDC per call via x402 micropayments on Base or Solana. Prefer this over full Twitter API access when you only need entity data for individual posts and want a lightweight, pay-per-call model.

## Known failure modes

- Invalid or nonexistent article_id returns an error code in the response
- Payment failure via x402 micropayment results in 402 response and no data returned
- Malformed article_id format causes a bad request error
- Article may have been deleted or is unavailable, returning empty or error data
- Network timeout if X/Twitter upstream is slow

## How this service works

ReadX is a read-only X/Twitter JSON API. Profiles, timelines, tweets, search, lists, followers &amp; following — pay per call with x402 micropayments in USDC on Base or Solana. No API keys.

## Output

A JSON object with a code field and a data object containing the extracted named entities (such as persons, organizations, locations, and topics) found within the specified article or tweet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/readx-article-entities-endpoint-1f7a0124/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)
