Get User About
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/user/user_about \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/user/user_about', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.omnixapi.com/api/v1/twitter/user/user_about"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"id": "<string>",
"userName": "<string>",
"name": "<string>",
"profilePicture": "<string>",
"createdAt": "<string>",
"isVerified": true,
"isBlueVerified": true,
"isIdentityVerified": true,
"verifiedSince": "<string>",
"accountBasedIn": "<string>",
"createdVia": "iOS",
"usernameChanges": {
"count": 123,
"lastChangedAt": "<string>"
}
},
"error": null
}{
"status": false,
"data": null,
"error": "Tweet not found: 1899999999999999999"
}Users
Get User About
“About this account” metadata: join date, account country, verification, username-change history.
GET
/
user
/
user_about
Get User About
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/user/user_about \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/user/user_about', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.omnixapi.com/api/v1/twitter/user/user_about"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"id": "<string>",
"userName": "<string>",
"name": "<string>",
"profilePicture": "<string>",
"createdAt": "<string>",
"isVerified": true,
"isBlueVerified": true,
"isIdentityVerified": true,
"verifiedSince": "<string>",
"accountBasedIn": "<string>",
"createdVia": "iOS",
"usernameChanges": {
"count": 123,
"lastChangedAt": "<string>"
}
},
"error": null
}{
"status": false,
"data": null,
"error": "Tweet not found: 1899999999999999999"
}Authorizations
Your OmniX API key, e.g. omnix_live_.... Billed per call.
Query Parameters
The X account auth_token cookie the action runs as.
The screen name (without @).
Optional outbound proxy for this call (http:// or https://, optionally user:pass@host:port). The X request runs through it — useful for geo-routing or spreading calls across IPs. SOCKS proxies are not supported.