Tweet Thread
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/tweet/thread \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/tweet/thread', 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/thread"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"conversationId": "<string>",
"author": {
"type": "user",
"id": "44196397",
"userName": "elonmusk",
"name": "Elon Musk",
"url": "<string>",
"twitterUrl": "<string>",
"isVerified": true,
"isBlueVerified": true,
"verifiedType": "<string>",
"profilePicture": "<string>",
"coverPicture": "<string>",
"description": "<string>",
"location": "<string>",
"followers": 123,
"following": 123,
"favouritesCount": 123,
"statusesCount": 123,
"mediaCount": 123,
"canDm": true,
"createdAt": "<string>",
"pinnedTweetIds": [
"<string>"
]
},
"thread_length": 123,
"complete": true,
"tweets": [
{
"type": "tweet",
"id": "<string>",
"text": "<string>",
"conversationId": "<string>",
"inReplyToId": "<string>",
"author": {
"id": "<string>",
"userName": "<string>",
"name": "<string>"
}
}
]
},
"error": null
}{
"status": false,
"data": null,
"error": "Tweet not found: 1899999999999999999"
}Tweets
Tweet Thread
Resolves the conversation root, then walks the original author’s reply chain to return the ordered self-thread (excludes side replies).
GET
/
tweet
/
thread
Tweet Thread
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/tweet/thread \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/tweet/thread', 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/thread"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"conversationId": "<string>",
"author": {
"type": "user",
"id": "44196397",
"userName": "elonmusk",
"name": "Elon Musk",
"url": "<string>",
"twitterUrl": "<string>",
"isVerified": true,
"isBlueVerified": true,
"verifiedType": "<string>",
"profilePicture": "<string>",
"coverPicture": "<string>",
"description": "<string>",
"location": "<string>",
"followers": 123,
"following": 123,
"favouritesCount": 123,
"statusesCount": 123,
"mediaCount": 123,
"canDm": true,
"createdAt": "<string>",
"pinnedTweetIds": [
"<string>"
]
},
"thread_length": 123,
"complete": true,
"tweets": [
{
"type": "tweet",
"id": "<string>",
"text": "<string>",
"conversationId": "<string>",
"inReplyToId": "<string>",
"author": {
"id": "<string>",
"userName": "<string>",
"name": "<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.
Any numeric tweet ID within the thread.
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.