Get User Affiliates
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/user/affiliates \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/user/affiliates', 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/affiliates"
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>",
"affiliates": [
{
"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 User Affiliates
Affiliated accounts of a verified organization.
GET
/
user
/
affiliates
Get User Affiliates
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/user/affiliates \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/user/affiliates', 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/affiliates"
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>",
"affiliates": [
{
"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.
The organization's screen name.
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.