Skip to main content
GET
/
info
User Profile
curl --request GET \
  --url https://api.sorsa.io/v3/info \
  --header 'ApiKey: <api-key>'
{
  "bio_urls": [
    "<string>"
  ],
  "can_dm": false,
  "created_at": "2009-06-02T20:12:29Z",
  "description": "Bio text",
  "display_name": "Elon Musk",
  "favourites_count": 1200,
  "followers_count": 100000,
  "followings_count": 500,
  "id": "44196397",
  "location": "Austin, TX",
  "media_count": 300,
  "pinned_tweet_ids": [
    "<string>"
  ],
  "possibly_sensitive": false,
  "profile_background_image_url": "https://pbs.twimg.com/profile_banners/44196397/123",
  "profile_image_url": "https://pbs.twimg.com/profile_images/123/photo.jpg",
  "protected": false,
  "tweets_count": 5000,
  "username": "elonmusk",
  "verified": true
}

Authorizations

ApiKey
string
header
required

Query Parameters

Full URL of the user's Twitter/X profile.

username
string

Twitter/X handle (without @).

user_id
string

Numeric Twitter/X user ID.

Response

OK

bio_urls
string[]

URLs found in the user's bio.

can_dm
boolean

Whether the account accepts direct messages.

Example:

false

created_at
string

Account creation date in ISO 8601 format.

Example:

"2009-06-02T20:12:29Z"

description
string

Profile bio text.

Example:

"Bio text"

display_name
string

User's display name.

Example:

"Elon Musk"

favourites_count
integer

Total number of tweets this user has liked.

Example:

1200

followers_count
integer

Number of accounts following this user.

Example:

100000

followings_count
integer

Number of accounts this user follows.

Example:

500

id
string

Unique Twitter/X user ID.

Example:

"44196397"

location
string

Location string from the user's profile.

Example:

"Austin, TX"

media_count
integer

Total number of media items posted by this user.

Example:

300

pinned_tweet_ids
string[]

IDs of the user's pinned tweets.

possibly_sensitive
boolean

Whether the account is flagged as possibly containing sensitive content.

Example:

false

profile_background_image_url
string

URL of the user's profile background image.

Example:

"https://pbs.twimg.com/profile_banners/44196397/123"

profile_image_url
string

URL of the user's avatar image.

Example:

"https://pbs.twimg.com/profile_images/123/photo.jpg"

protected
boolean

Whether the account's tweets are protected (private).

Example:

false

tweets_count
integer

Total number of tweets posted by this user.

Example:

5000

username
string

Current Twitter/X handle (without @).

Example:

"elonmusk"

verified
boolean

Whether the account has a verified badge.

Example:

true