Skip to main content
GET
/
tweet
/
{tweetId}
Get Tweet
curl --request GET \
  --url https://api.zilodata.com/api/v1/x/tweet/{tweetId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "1234567890123456789",
  "text": "Just launched a new product! Check it out #innovation",
  "author": "elonmusk",
  "likeCount": 50000,
  "retweetCount": 10000,
  "replyCount": 2000,
  "quoteCount": 500,
  "viewCount": 1000000,
  "createdAt": "2025-01-15T10:30:00.000Z",
  "isRetweet": false,
  "retweetedTweet": "<unknown>",
  "url": "https://twitter.com/elonmusk/status/1234567890123456789",
  "media": [
    {
      "type": "photo",
      "url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tweetId
string
required

Response

Successful response

id
string
Example:

"1234567890123456789"

text
string
Example:

"Just launched a new product! Check it out #innovation"

author
string
Example:

"elonmusk"

likeCount
integer
Example:

50000

retweetCount
integer
Example:

10000

replyCount
integer
Example:

2000

quoteCount
integer
Example:

500

viewCount
integer
Example:

1000000

createdAt
string<date-time>
Example:

"2025-01-15T10:30:00.000Z"

isRetweet
boolean
Example:

false

retweetedTweet
any
url
string<uri>
Example:

"https://twitter.com/elonmusk/status/1234567890123456789"

media
object[]