Followers You Know
curl --request POST \
--url https://api.omnixapi.com/api/v1/twitter/user/followers_you_know \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"auth_token": "YOUR_X_AUTH_TOKEN",
"user_id": "<string>",
"user_name": "elonmusk",
"count": 20,
"cursor": "<string>",
"proxy": "http://user:pass@host:8080"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
auth_token: 'YOUR_X_AUTH_TOKEN',
user_id: '<string>',
user_name: 'elonmusk',
count: 20,
cursor: '<string>',
proxy: 'http://user:pass@host:8080'
})
};
fetch('https://api.omnixapi.com/api/v1/twitter/user/followers_you_know', 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/followers_you_know"
payload = {
"auth_token": "YOUR_X_AUTH_TOKEN",
"user_id": "<string>",
"user_name": "elonmusk",
"count": 20,
"cursor": "<string>",
"proxy": "http://user:pass@host:8080"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": true,
"data": {
"userId": "<string>",
"targetUserId": "<string>",
"user_count": 123,
"has_more": true,
"next_cursor": "<string>",
"followers_you_know": [
{
"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
Followers You Know
A target’s followers that the authed user also follows.
POST
/
user
/
followers_you_know
Followers You Know
curl --request POST \
--url https://api.omnixapi.com/api/v1/twitter/user/followers_you_know \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"auth_token": "YOUR_X_AUTH_TOKEN",
"user_id": "<string>",
"user_name": "elonmusk",
"count": 20,
"cursor": "<string>",
"proxy": "http://user:pass@host:8080"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
auth_token: 'YOUR_X_AUTH_TOKEN',
user_id: '<string>',
user_name: 'elonmusk',
count: 20,
cursor: '<string>',
proxy: 'http://user:pass@host:8080'
})
};
fetch('https://api.omnixapi.com/api/v1/twitter/user/followers_you_know', 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/followers_you_know"
payload = {
"auth_token": "YOUR_X_AUTH_TOKEN",
"user_id": "<string>",
"user_name": "elonmusk",
"count": 20,
"cursor": "<string>",
"proxy": "http://user:pass@host:8080"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": true,
"data": {
"userId": "<string>",
"targetUserId": "<string>",
"user_count": 123,
"has_more": true,
"next_cursor": "<string>",
"followers_you_know": [
{
"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.
Body
application/json
The X account auth_token cookie the action runs as.
Example:
"YOUR_X_AUTH_TOKEN"
Target user ID (or use user_name).
Target screen name.
Example:
"elonmusk"
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.
Example:
"http://user:pass@host:8080"