# ReadX X/Twitter Full Profile Lookup

> ReadX X/Twitter Full Profile Lookup is a paid API for AI agents from readx.1x402.sh, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Fetches a comprehensive Twitter/X user profile including bio, follower/following counts, banner image, pinned tweet, and photo rail for a given username.

## Facts

- Endpoint: GET https://readx.1x402.sh/api/:name/profile
- Price: $0.03/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/readx-x-twitter-full-profile-lookup-5be10c58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6l2kEFMP-ppCJc0YDeY5k

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-x-twitter-full-profile-lookup-5be10c58
```

Example prompt: Pull the full X profile for elonmusk — I want their bio, follower count, banner, pinned tweet, and photo rail.

## When to prefer this

Use this endpoint when you need a rich, consolidated snapshot of a Twitter/X user including their visual profile (banner, photos) and pinned tweet in one call, rather than making separate requests for timeline, about, or pinned data. Prefer this over the /about or /pinned sibling endpoints when you need multiple profile fields at once.

## Known failure modes

- Unknown or suspended username returns 404 or empty result
- Private/protected accounts may return limited or no data
- Invalid handle format (e.g. containing @) returns validation error
- Rate limiting or payment failure returns 402 or 429
- Temporarily unavailable X data returns 503

## How this service works

Full profile: bio, counts, banner, pinned tweet and a photo rail. Example: GET /api/jack/profile

## Output

Returns a JSON object containing the user's full profile: biographical text, follower and following counts, banner image URL, pinned tweet content, and a photo rail of recent media — all in a single response.

## 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-x-twitter-full-profile-lookup-5be10c58/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from readx.1x402.sh](https://www.zero.xyz/host/readx.1x402.sh/llms.txt)
