TwitterAPIs Docs
API ReferenceUser Reads

Twitter User About API | Extended Profile Data

Read a profile's full About object: identity, bio, location, linked website, avatar, verification and identity-verification flags, professional account type and categories, follower and following counts, the account creation date, and X's "About this account" transparency panel (account country, how the account was created, and username-change history). Cost: $0.0008 per call.

User About reads a profile's extended About object: identity, bio, location, linked website, avatar, verification and identity-verification flags, the professional account type and categories, follower and following counts, the account creation date, and X's "About this account" transparency panel (account country, how the account was created, and username-change history). Use it when you need the richer business, verification, and transparency metadata beyond the standard profile. One $0.0008 read.

GET
/user/user_about

Authorization

bearerAuth
AuthorizationBearer <token>

Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.

In: header

Query Parameters

username*string

Handle without the leading @. Required: unlike the other user reads, this endpoint cannot be called with user_id alone.

user_id?string

Numeric user ID. Not currently a substitute for username on this endpoint: a user_id-only request fails upstream. Resolve the ID to a handle with GET /user/info_by_id and pass username.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/user/user_about?username=stripe&user_id=44196397"
{  "about": {    "id": "13334762",    "username": "stripe",    "name": "Stripe",    "description": "Payments infrastructure for the internet.",    "location": "San Francisco, CA",    "url": "https://stripe.com",    "is_blue_verified": true,    "verified": true,    "verified_type": "Business",    "professional_type": "Business",    "professional_categories": [      "Software Company"    ],    "followers_count": 312000,    "following_count": 412,    "created_at": "Tue Feb 12 18:02:11 +0000 2008",    "profile_image_url": "https://pbs.twimg.com/profile_images/1841086032213626880/example_normal.jpg",    "is_identity_verified": false,    "verified_since": null,    "account_based_in": "United States",    "created_via": "United States App Store",    "username_changes": {      "count": 0,      "last_changed_at": null    },    "created_country_accurate": true,    "location_accurate": true,    "learn_more_url": "https://help.twitter.com/managing-your-account/about-twitter-verified-accounts"  }}
{  "error": "bad_request",  "message": "Missing or malformed parameter. Fix the request before retrying."}
{  "error": "unauthorized",  "message": "The API key is missing, malformed, or revoked. Check the Authorization header."}
{  "error": "insufficient_credits",  "message": "Your balance is exhausted. Top up your credits to continue."}
{  "error": "not_found",  "message": "The resource does not exist, for example a deleted tweet or a private account."}
{  "error": "rate_limited",  "message": "Too many requests. Back off and retry with exponential backoff."}
{  "error": "server_error",  "message": "Something failed on our side. Retry with backoff; if it persists, contact support."}

Pricing

UnitPrice
Per call$0.0008
Per 1,000 calls$0.80

When to use

Use it for richer profile metadata, for example reading a brand account's professional category and linked website.

FAQ

How is User About different from User Info?

User About adds extended fields: linked website, professional account type and categories, and verification flags like verified_type, beyond the standard profile.

Does it show whether an account is a business?

Yes. It returns professional_type and professional_categories, plus verified_type, which distinguish business and professional accounts.

What identifier does it take?

Pass the username (the handle without the leading @). It returns the full About object for that profile.