ScrapeTwitter
Users

User Info

Get full profile information for a user

GET /twitter/user/info

Query Parameters

ParameterTypeRequiredDescription
userNamestringYesScreen name (without @)

Notes

  • Returns full profile information for a Twitter user.
  • No pagination needed - returns complete profile in one call.

Response

{
  "status": "success",
  "msg": "success",
  "data": {
    "id": "1345154135381794816",
    "name": "Dhruv",
    "userName": "druv_kotwani",
    "location": "India",
    "url": "https://www.dhruvkotwani.xyz/",
    "description": "doing something @quillaudits_ai",
    "protected": false,
    "isVerified": false,
    "isBlueVerified": true,
    "verifiedType": null,
    "followers": 229,
    "following": 233,
    "favouritesCount": 4079,
    "statusesCount": 986,
    "mediaCount": 113,
    "createdAt": "2021-01-01T23:45:21.000000Z",
    "coverPicture": null,
    "profilePicture": "https://pbs.twimg.com/profile_images/.../pj0DTqs2_400x400.jpg",
    "canDm": false,
    "pinnedTweetIds": []
  }
}

Response Fields

FieldTypeDescription
idstringUnique user ID
namestringDisplay name
userNamestring@handle (screen name)
locationstringUser's location
urlstringWebsite URL (expanded)
descriptionstringBio
protectedbooleanIs account private?
isVerifiedbooleanLegacy verification
isBlueVerifiedbooleanTwitter Blue subscriber
verifiedTypestringVerification type (usually null)
followersnumberFollower count
followingnumberFollowing count
favouritesCountnumberLikes count
statusesCountnumberTweet count
mediaCountnumberMedia posts count
createdAtstringAccount creation date (ISO 8601)
coverPicturestringBanner image URL
profilePicturestringAvatar URL (400x400)
canDmbooleanCan receive DMs
pinnedTweetIdsarrayIDs of pinned tweets

Example

curl "https://api.scrapetwitter.com/twitter/user/info?userName=druv_kotwani"

On this page