Skip to main content
GET
/
v1
/
data
/
tweet
/
{id}
Get tweet by ID
curl --request GET \
  --url https://rest-api.utrack.club/v1/data/tweet/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "1234567890123456789",
  "type": "TWEET",
  "created_at": 1609459200000,
  "author": {
    "id": "987654321",
    "handle": "example_user",
    "private": false,
    "verified": true,
    "sensitive": false,
    "restricted": false,
    "joined_at": 1262304000000,
    "profile": {
      "name": "Example User",
      "location": "San Francisco, CA",
      "avatar": "https://pbs.twimg.com/profile_images/example.jpg",
      "banner": "https://pbs.twimg.com/profile_banners/example.jpg",
      "pinned": [],
      "url": {
        "name": "example.com",
        "url": "https://example.com",
        "tco": "https://t.co/example"
      },
      "description": {
        "text": "Example bio text",
        "urls": []
      }
    },
    "metrics": {
      "likes": 100,
      "media": 50,
      "tweets": 1000,
      "friends": 200,
      "followers": 5000,
      "following": 300
    }
  },
  "subtweet": null,
  "reply": null,
  "quoted": null,
  "body": {
    "text": "This is an example tweet",
    "urls": [],
    "mentions": [],
    "components": []
  },
  "media": {
    "images": [],
    "videos": [],
    "thumbnails": [],
    "proxied": null
  },
  "grok": null,
  "card": null,
  "poll": null,
  "article": null,
  "metrics": {
    "likes": 10,
    "quotes": 2,
    "replies": 5,
    "retweets": 3,
    "advanced": null
  }
}

Authorizations

Authorization
string
header
required

Authentication token passed in the Authorization header as 'Bearer '

Path Parameters

id
string
required

The tweet ID (snowflake ID)

Response

Tweet data retrieved successfully

Complete detailed version of a Twitter/X post

id
string
required

The tweet's snowflake ID

type
enum<string>
required

The type of the tweet

Available options:
TWEET,
RETWEET,
QUOTE,
REPLY
created_at
number
required

UNIX timestamp of when the tweet was created in milliseconds

author
object
required

Complete detailed version of a Twitter/X user profile

body
object
required
media
object
required
metrics
object
required
subtweet
any | null

The subtweet (reply, quote, retweet) referenced by this tweet (if any)

reply
object

Information about who the tweet is replying to (if any)

quoted
object

Information about who the tweet is quoting (if any)

grok
object

Embedded Grok xAI conversation preview in the tweet (if any)

card
object

Information about an embedded card within the tweet (if any)

poll
object

Information about a poll within the tweet (if any)

article
object

Information about an article within the tweet (if any)