GetXAPI
Users

User About

Get account metadata including creation location and username history

GET /twitter/user/user_about

Query Parameters

ParameterTypeRequiredDescription
userNamestringYesScreen name (without @)

Notes

  • Returns account metadata like creation location, signup source, and username change history.
  • Useful for verifying account authenticity.
  • No pagination needed - returns complete data in one call.

Response

{
  "status": "success",
  "msg": "success",
  "data": {
    "id": "1345154135381794816",
    "userName": "druv_kotwani",
    "name": "Dhruv",
    "profilePicture": "https://pbs.twimg.com/profile_images/.../pj0DTqs2_400x400.jpg",
    "createdAt": "2021-01-01T23:45:21.000000Z",
    "isVerified": false,
    "isBlueVerified": true,
    "isIdentityVerified": false,
    "verifiedSince": "2026-01-10T04:47:11.653Z",
    "accountBasedIn": "India",
    "createdVia": "Web",
    "usernameChanges": {
      "count": 1,
      "lastChangedAt": "2021-01-01T23:52:42.401Z"
    }
  }
}

Response Fields

FieldTypeDescription
idstringUnique user ID
userNamestring@handle (screen name)
namestringDisplay name
profilePicturestringAvatar URL (400x400)
createdAtstringAccount creation date (ISO 8601)
isVerifiedbooleanLegacy verification (pre-Elon blue check)
isBlueVerifiedbooleanTwitter Blue subscriber (paid)
isIdentityVerifiedbooleanVerified with government ID
verifiedSincestringBlue verification date (ISO 8601), null if not verified
accountBasedInstringCountry where account was created
createdViastringSignup source (Web, iOS, Android)
usernameChanges.countnumberNumber of username changes
usernameChanges.lastChangedAtstringLast username change date (ISO 8601)

Example

curl -H "Authorization: Bearer API_KEY" "https://api.getxapi.com/twitter/user/user_about?userName=druv_kotwani"

On this page