X User Profile ($0
X User Profile ($0.015/call): Fetch an X (Twitter) account by handle: display name, bio, follower/following/tweet counts, account creation date and age in days, verification status, location and profile image. No X account or API key needed.
15000 (raw units)
price
6
calls / 30d
4
unique payers
2026-09-10
updated
Provider
x402.botsmith.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xcb9b3F94387389e38EF2A7b3C0B851FB8325d7e9",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "15000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:196",
"payTo": "0xadd1a0a81836b1ea5b272dbed78746ba09f55370",
"asset": "0x779ded0c9e1022225f8e0630b35a9b54be713736",
"amount": "15000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"handle": "naval"
},
"type": "http"
},
"output": {
"example": {
"accountAgeDays": 7106,
"bio": "Deploy capital and code.",
"createdAt": "2007-02-01T05:44:27.000Z",
"followers": 2900000,
"following": 1200,
"handle": "naval",
"id": "745273",
"location": null,
"name": "Naval",
"profileImage": "https://pbs.twimg.com/profile_images/example.jpg",
"tweetCount": 42000,
"url": "https://x.com/naval",
"verified": {
"blue": true,
"type": null
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"handle": {
"description": "X handle, with or without the leading @",
"pattern": "^@?[A-Za-z0-9_]{1,15}$",
"type": "string"
}
},
"required": [
"handle"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"accountAgeDays": {
"anyOf": [
{
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
{
"type": "null"
}
]
},
"bio": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"createdAt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "ISO 8601 account creation time"
},
"followers": {
"anyOf": [
{
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
{
"type": "null"
}
]
},
"following": {
"anyOf": [
{
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
{
"type": "null"
}
]
},
"handle": {
"type": "string"
},
"id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"profileImage": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"tweetCount": {
"anyOf": [
{
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
{
"type": "null"
}
]
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"verified": {
"additionalProperties": false,
"properties": {
"blue": {
"type": "boolean"
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"blue",
"type"
],
"type": "object"
}
},
"required": [
"handle",
"id",
"name",
"bio",
"url",
"location",
"profileImage",
"verified",
"followers",
"following",
"tweetCount",
"createdAt",
"accountAgeDays"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.botsmith.dev/x/user" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.botsmith.dev/x/user");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402.botsmith.dev/x/user")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/483.json, and this resource appears in /discovery/resources and /discovery/search.