# PayWeave Twitter – User Profile Lookup

> PayWeave Twitter – User Profile Lookup is a paid API for AI agents from twitter.payweave.services, paid per call via x402, $0.0006/call, status unknown (last checked 2026-09-14).

Fetches public profile data for a given X/Twitter username via a pay-per-call micropayment API

## Facts

- Endpoint: GET https://twitter.payweave.services/users/about
- Price: $0.0006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-twitter-user-profile-lookup-bc113feb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ggenB_Av8U3cmfb4pqLTX

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 payweave-twitter-user-profile-lookup-bc113feb
```

Example prompt: Can you pull up the public Twitter profile for the user 'naval' — I want their bio, follower count, and display name?

## When to prefer this

Choose this endpoint when you need lightweight, pay-per-call access to Twitter/X user profile data without managing OAuth credentials or Twitter API subscriptions. It is ideal for one-off lookups, low-volume enrichment workflows, or agent pipelines that need to resolve a Twitter handle to profile metadata (bio, follower count, display name) on demand. Prefer it over official Twitter API integrations when you want micropayment-based billing (USDC per call) and no upfront API key setup.

## Known failure modes

- Username not found – returns an error if the handle does not exist or has been suspended
- Empty or missing username field – request fails validation since username is required and must be non-empty
- Rate limiting or upstream errors from twitterapi.io – may return 5xx or provider-specific error codes
- Private accounts may return limited or no profile data
- Typos in username yield no results or wrong profile data

## How this service works

X/Twitter data — tweets, users, communities, lists, articles, and trends.

## Output

A user-profile JSON object forwarded verbatim from twitterapi.io, typically containing fields such as username, display name, bio/description, follower count, following count, profile image URL, verified status, account creation date, and other public metadata available on the X/Twitter platform.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "anyOf": [
      {
       "not": {}
      },
      {
       "type": "object",
       "required": [
        "username"
       ],
       "properties": {
        "username": {
         "type": "string",
         "minLength": 1,
         "description": "X handle / screen name (without @), e.g. elonmusk."
        }
       },
       "additionalProperties": false
      }
     ]
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "example"
   ],
   "properties": {
    "example": {
     "type": "object",
     "properties": {},
     "description": "User-profile JSON forwarded verbatim from twitterapi.io.",
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-twitter-user-profile-lookup-bc113feb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.payweave.services](https://www.zero.xyz/host/twitter.payweave.services/llms.txt)
