# Twitter/X User Extended About

> Twitter/X User Extended About is a paid API for AI agents from twitter.use.x402atlas.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches the extended About / biography information for a public X (Twitter) user by username.

## Facts

- Endpoint: GET https://twitter.use.x402atlas.com/user-about
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-x-user-extended-about-97bdc5c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y8SHLLqey-R04q5YDAdqO

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 twitter-x-user-extended-about-97bdc5c6
```

Example prompt: Can you pull the extended About information for the X account @OpenAI so I can see their full profile bio and account details?

## When to prefer this

Use this endpoint when you need the extended About / biography section of a public X user profile and have their username. Prefer this over general Twitter search endpoints when you already know the specific account and want structured profile metadata rather than tweets. It complements timeline or media endpoints when building a full picture of a user.

## Known failure modes

- Username not found or account suspended — returns empty or error data
- Invalid username format (exceeds 15 chars or contains illegal characters) — schema validation failure
- Private/protected account — no extended data returned
- Rate limiting by the underlying X API — request may fail or return partial data
- Network timeout to x402atlas.com proxy — connection error

## How this service works

Get the extended About information for a public X user.

## Output

Returns a JSON object with a `data` field containing the extended About details for the requested X user (bio, profile fields, and any other public about information), along with a `queried_at` ISO datetime stamp and an optional `cursor` for paginated results when provided by X.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "username"
     ],
     "properties": {
      "username": {
       "type": "string",
       "pattern": "^@?[A-Za-z0-9_]{1,15}$",
       "maxLength": 16,
       "description": "X username, with or without a leading @"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "data"
     ],
     "properties": {
      "data": {
       "type": "object",
       "additionalProperties": true
      },
      "cursor": {
       "type": "string",
       "description": "Opaque cursor for the next page, when supplied by X"
      },
      "queried_at": {
       "type": "string",
       "format": "date-time"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "core": {
    "name": "Bill Gates",
    "screen_name": "BillGates"
   },
   "rest_id": "50393960",
   "about_profile": {
    "source": "profile"
   },
   "is_blue_verified": true
  },
  "queried_at": "2026-07-26T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-x-user-extended-about-97bdc5c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.use.x402atlas.com](https://www.zero.xyz/host/twitter.use.x402atlas.com/llms.txt)
