# ReadX Account About — X/Twitter Account Info Lookup

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

Retrieves account metadata for a given X/Twitter handle, including join date, base location, verification status, and username change history.

## Facts

- Endpoint: GET https://x.1x402.sh/api/:name/about
- 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-account-about-x-twitter-account-info-lookup-a7a130cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4a1EuUrhlJWxU7ZHUC0jh

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-account-about-x-twitter-account-info-lookup-a7a130cb
```

Example prompt: Can you look up the account info for the X user 'elonmusk' — I want to know their join date, location, whether they're verified, and if they've ever changed their username?

## When to prefer this

Use this endpoint when you need lightweight, non-timeline account metadata for an X/Twitter user — specifically join date, location, verification badge, and username history — without needing tweets, followers, or timeline content. Ideal for account due-diligence, identity enrichment, or verifying account age and authenticity.

## Known failure modes

- Invalid or non-alphanumeric username returns a validation error
- Handle not found on X returns a 404 or empty result
- Payment failure (402) if USDC balance is insufficient
- Rate limiting or upstream X API errors may cause intermittent failures

## How this service works

Account info: join date, base location, verification, username changes. Example: GET /api/jack/about

## Output

Returns structured JSON with the X account's join date, declared base location, verification status, and history of username changes for the requested 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-account-about-x-twitter-account-info-lookup-a7a130cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x.1x402.sh](https://www.zero.xyz/host/x.1x402.sh/llms.txt)
