# ReadX User Profile Info

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

Fetches a Twitter/X user's public profile data including id, name, bio, location, follower/following counts, and verification status by handle

## Facts

- Endpoint: GET https://readx.sh/api/:name/info
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/readx-user-profile-info-556e3df5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-P91pM26zXhVTv3xUzuGK

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-user-profile-info-556e3df5
```

Example prompt: Can you pull up the Twitter profile info for elonmusk — I want to see their bio, follower count, and whether they're verified?

## When to prefer this

Choose this endpoint when you need structured profile metadata (bio, follower counts, verification) for a specific known X/Twitter username. Prefer this over a search endpoint when you already have the exact handle and want authoritative profile data in a single fast call. Ideal for enrichment pipelines, influencer research, journalist verification, or social graph analysis workflows that require per-user profile facts.

## Known failure modes

- Handle not found — returns 404 or empty result if the username does not exist or has been suspended
- Invalid handle format — returns validation error if handle contains disallowed characters or is empty
- Rate limiting or payment failure — call may be rejected if USDC payment is not processed correctly via x402
- Private/suspended accounts may return no data or partial data
- Handle changes — if the user has changed their username, the old handle will return no results

## How this service works

A user's profile info: id, name, bio, location, follower/following counts, verification. Example: GET /api/jack/info

## Output

Returns a JSON object containing the user's numeric id, display name, bio/description text, location string, follower count, following count, tweet count, and verification status for the requested X handle.

## 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)."
      }
     }
    }
   },
   "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-user-profile-info-556e3df5/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)
