Tweet Detail
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/tweet/detail \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/tweet/detail', 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/detail"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"type": "tweet",
"id": "1899999999999999999",
"url": "<string>",
"twitterUrl": "<string>",
"text": "Exciting times ahead",
"source": "Twitter for iPhone",
"retweetCount": 1200,
"replyCount": 3400,
"likeCount": 56000,
"quoteCount": 210,
"viewCount": 4500000,
"bookmarkCount": 800,
"createdAt": "Wed Jun 11 18:30:00 +0000 2025",
"lang": "en",
"isReply": true,
"inReplyToId": "<string>",
"inReplyToUserId": "<string>",
"conversationId": "<string>",
"media": [
{
"type": "photo",
"url": "<string>",
"expanded_url": "<string>",
"video_url": "<string>",
"width": 123,
"height": 123,
"duration_ms": 123
}
],
"entities": {
"hashtags": [
{}
],
"symbols": [
{}
],
"timestamps": [
{}
],
"urls": [
{}
],
"user_mentions": [
{}
]
},
"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>"
]
},
"quoted_tweet": {}
},
"error": null
}{
"status": false,
"data": null,
"error": "Tweet not found: 1899999999999999999"
}Tweets
Tweet Detail
A single tweet with its full author, media, entities and engagement counts.
GET
/
tweet
/
detail
Tweet Detail
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/tweet/detail \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/tweet/detail', 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/detail"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"type": "tweet",
"id": "1899999999999999999",
"url": "<string>",
"twitterUrl": "<string>",
"text": "Exciting times ahead",
"source": "Twitter for iPhone",
"retweetCount": 1200,
"replyCount": 3400,
"likeCount": 56000,
"quoteCount": 210,
"viewCount": 4500000,
"bookmarkCount": 800,
"createdAt": "Wed Jun 11 18:30:00 +0000 2025",
"lang": "en",
"isReply": true,
"inReplyToId": "<string>",
"inReplyToUserId": "<string>",
"conversationId": "<string>",
"media": [
{
"type": "photo",
"url": "<string>",
"expanded_url": "<string>",
"video_url": "<string>",
"width": 123,
"height": 123,
"duration_ms": 123
}
],
"entities": {
"hashtags": [
{}
],
"symbols": [
{}
],
"timestamps": [
{}
],
"urls": [
{}
],
"user_mentions": [
{}
]
},
"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>"
]
},
"quoted_tweet": {}
},
"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.
The numeric tweet ID.
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.
⌘I