Tweet Replies
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/tweet/replies \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/tweet/replies', 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/tweet/replies"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"tweetId": "<string>",
"reply_count": 123,
"has_more": true,
"next_cursor": "<string>",
"replies": [
{
"type": "tweet",
"id": "<string>",
"url": "<string>",
"text": "<string>",
"likeCount": 123,
"replyCount": 123,
"viewCount": 123,
"author": {
"userName": "<string>",
"name": "<string>"
}
}
]
},
"error": null
}{
"status": false,
"data": null,
"error": "Missing required field: text"
}Tweets
Tweet Replies
Replies beneath a tweet, excluding the focal tweet and its ancestors.
GET
/
tweet
/
replies
Tweet Replies
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/tweet/replies \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/tweet/replies', 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/tweet/replies"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"tweetId": "<string>",
"reply_count": 123,
"has_more": true,
"next_cursor": "<string>",
"replies": [
{
"type": "tweet",
"id": "<string>",
"url": "<string>",
"text": "<string>",
"likeCount": 123,
"replyCount": 123,
"viewCount": 123,
"author": {
"userName": "<string>",
"name": "<string>"
}
}
]
},
"error": null
}{
"status": false,
"data": null,
"error": "Missing required field: text"
}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 numeric tweet ID.
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.