GetXAPI
Users

User About

Get Twitter account metadata including creation location and username history via API. $0.001 per call. GetXAPI user about endpoint.

GET/twitter/user/user_about

This endpoint costs $0.001 per API call.

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": "1234567890123456789",
    "userName": "example_user",
    "name": "Example User",
    "profilePicture": "https://pbs.twimg.com/profile_images/.../example_400x400.jpg",
    "createdAt": "2024-01-01T00:00:00.000000Z",
    "isVerified": false,
    "isBlueVerified": true,
    "isIdentityVerified": false,
    "verifiedSince": "2026-01-01T00:00:00.000Z",
    "accountBasedIn": "United States",
    "createdVia": "Web",
    "usernameChanges": {
      "count": 1,
      "lastChangedAt": "2025-01-01T00:00:00.000Z"
    }
  }
}

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)

Error Responses

404 - User not found

{
  "error": "Could not find about info for @nonexistent_user"
}

Example

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

On this page