Skip to main content
GET
/
x
/
user
curl -X GET "https://scrape.st/x/user?username=elonmusk" \
  -H "x-api-key: YOUR_API_KEY"
{
  "id": "44196397",
  "name": "Elon Musk",
  "screen_name": "elonmusk",
  "description": "",
  "location": "",
  "url": null,
  "created_at": "2009-06-02T20:12:29.000Z",
  "followers_count": 201900000,
  "friends_count": 0,
  "statuses_count": 50000,
  "favourites_count": 50000,
  "listed_count": 100000,
  "verified": true,
  "is_blue_verified": true,
  "profile_image_url": "https://pbs.twimg.com/profile_images/123456789/elonmusk_normal.jpg",
  "protected": false
}
Retrieve detailed profile information for an X user.

Query Parameters

username
string
required
X username (without @)

Response

id
string
User’s unique X ID
name
string
Display name
screen_name
string
X handle (with @)
description
string
Bio text
location
string
Location field
followers_count
number
Number of followers
friends_count
number
Number of accounts following
verified
boolean
Whether user is verified
profile_image_url
string
Profile image URL
curl -X GET "https://scrape.st/x/user?username=elonmusk" \
  -H "x-api-key: YOUR_API_KEY"
{
  "id": "44196397",
  "name": "Elon Musk",
  "screen_name": "elonmusk",
  "description": "",
  "location": "",
  "url": null,
  "created_at": "2009-06-02T20:12:29.000Z",
  "followers_count": 201900000,
  "friends_count": 0,
  "statuses_count": 50000,
  "favourites_count": 50000,
  "listed_count": 100000,
  "verified": true,
  "is_blue_verified": true,
  "profile_image_url": "https://pbs.twimg.com/profile_images/123456789/elonmusk_normal.jpg",
  "protected": false
}