Skip to content
GET/user/user_about$0.0008 / call

User About

Read the extended About section of a profile, including professional category, website, and any business contact details the account has published.

Request

curl "https://api.twitterapis.com/user/user_about?username=stripe" \
  -H "Authorization: Bearer $TWITTERAPIS_KEY"

Parameters

ParameterTypeRequiredDescription
usernamestringrequired

Handle without the leading @.

Example: stripe

Response

FieldTypeDescription
aboutobject

Extended profile details (category, website, contact).

statusstring

"success" on a normal response.

Example response

{
  "about": {
    "category": "Software Company",
    "website": "https://stripe.com",
    "location": "San Francisco, CA"
  },
  "status": "success"
}

Pricing for this endpoint

user/user_about costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.

Related endpoints