Skip to main content
GET
/
x
/
about-user
curl -X GET "https://scrape.st/x/about-user?username=elonmusk" \
  -H "x-api-key: YOUR_API_KEY"
{
  "id": "44196397",
  "name": "Elon Musk",
  "username": "elonmusk",
  "created_at": "2009-06-02T20:12:29.000Z",
  "about_profile": {
    "account_based_in": "United States",
    "created_country_accurate": true,
    "learn_more_url": "https://help.x.com/en/rules-and-policies/profile-labels",
    "location_accurate": true,
    "source": "TwitterApp",
    "username_changes": {
      "count": "2",
      "last_changed_at_msec": "1686787200000"
    }
  },
  "avatar": {
    "image_url": "https://pbs.twimg.com/profile_images/123456789/elonmusk_normal.jpg"
  },
  "is_blue_verified": true,
  "profile_image_shape": "Circle",
  "privacy": {
    "protected": false
  },
  "verification": {
    "verified": false
  },
  "verification_info": {
    "is_identity_verified": false
  }
}
Retrieve the About this account panel for an X user — origin country, account creation accuracy, username change history, and verification details.

Query Parameters

username
string
required
X username (without @)

Response

id
string
User’s unique X ID
name
string
Display name
username
string
X handle
created_at
string
Account creation timestamp (ISO-8601)
about_profile
object
Origin and provenance metadata for the account.
avatar
object
Profile image (image_url)
is_blue_verified
boolean
Whether the account has X Premium (blue) verification
privacy
object
Privacy settings (protected)
verification
object
Legacy verification status (verified)
verification_info
object
Identity verification details (is_identity_verified)
curl -X GET "https://scrape.st/x/about-user?username=elonmusk" \
  -H "x-api-key: YOUR_API_KEY"
{
  "id": "44196397",
  "name": "Elon Musk",
  "username": "elonmusk",
  "created_at": "2009-06-02T20:12:29.000Z",
  "about_profile": {
    "account_based_in": "United States",
    "created_country_accurate": true,
    "learn_more_url": "https://help.x.com/en/rules-and-policies/profile-labels",
    "location_accurate": true,
    "source": "TwitterApp",
    "username_changes": {
      "count": "2",
      "last_changed_at_msec": "1686787200000"
    }
  },
  "avatar": {
    "image_url": "https://pbs.twimg.com/profile_images/123456789/elonmusk_normal.jpg"
  },
  "is_blue_verified": true,
  "profile_image_shape": "Circle",
  "privacy": {
    "protected": false
  },
  "verification": {
    "verified": false
  },
  "verification_info": {
    "is_identity_verified": false
  }
}