Skip to content

Get About Account stats

GET
/2/profile/{handle}/about
curl --request GET \
--url https://api.fxtwitter.com/2/profile/X/about

Returns the same about_account object as /2/profile/{handle} with about_account / aboutAccount enabled, without fetching the full profile.

handle
required
string
Example
X

Username without @, or numeric user id as id:<rest_id> (e.g. id:783214). Case-insensitive id: prefix.

About metadata (check code); about_account omitted when upstream has none

Media type application/json
object
code
required
number
message
required
string
about_account
object
based_in
string
nullable
location_accurate
boolean
created_country_accurate
boolean
nullable
source
string
nullable
username_changes
object
count
required
number
last_changed_at
required
string
nullable
Example generated
{
"code": 1,
"message": "example",
"about_account": {
"based_in": "example",
"location_accurate": true,
"created_country_accurate": true,
"source": "example",
"username_changes": {
"count": 1,
"last_changed_at": "example"
}
}
}

Invalid path parameters

Media type application/json
object
code
required
number
Allowed values: 400
message
required
string
Example
{
"code": 400
}

User not found

Media type application/json
object
code
required
number
message
required
string
about_account
object
based_in
string
nullable
location_accurate
boolean
created_country_accurate
boolean
nullable
source
string
nullable
username_changes
object
count
required
number
last_changed_at
required
string
nullable
Example generated
{
"code": 1,
"message": "example",
"about_account": {
"based_in": "example",
"location_accurate": true,
"created_country_accurate": true,
"source": "example",
"username_changes": {
"count": 1,
"last_changed_at": "example"
}
}
}