Get Verified Followers
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/user/verified_followers \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/user/verified_followers', 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/verified_followers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"userName": "<string>",
"user_count": 123,
"has_more": true,
"next_cursor": "<string>",
"verified_followers": [
{
"type": "user",
"id": "<string>",
"userName": "<string>",
"name": "<string>",
"url": "<string>",
"isVerified": true,
"isBlueVerified": true,
"verifiedType": "<string>",
"protected": true,
"profilePicture": "<string>",
"coverPicture": "<string>",
"description": "<string>",
"location": "<string>",
"followers": 123,
"following": 123,
"tweets": 123,
"listed": 123,
"createdAt": "<string>",
"canDm": true
}
]
},
"error": null
}Users
Get Verified Followers
A user’s verified followers.
GET
/
user
/
verified_followers
Get Verified Followers
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/user/verified_followers \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/user/verified_followers', 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/verified_followers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"userName": "<string>",
"user_count": 123,
"has_more": true,
"next_cursor": "<string>",
"verified_followers": [
{
"type": "user",
"id": "<string>",
"userName": "<string>",
"name": "<string>",
"url": "<string>",
"isVerified": true,
"isBlueVerified": true,
"verifiedType": "<string>",
"protected": true,
"profilePicture": "<string>",
"coverPicture": "<string>",
"description": "<string>",
"location": "<string>",
"followers": 123,
"following": 123,
"tweets": 123,
"listed": 123,
"createdAt": "<string>",
"canDm": true
}
]
},
"error": null
}Authorizations
Your OmniX API key, e.g. omnix_live_.... Billed per call.
Query Parameters
The X account auth_token cookie the action runs as.
Screen name (use this or userId).
Numeric user ID (recommended; overrides userName).
Page size (1–100).
Pagination cursor from a previous response's next_cursor.
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.