Parameters
The ID of the tweet to retrieve
Headers
Your API key for authentication
Response
Show properties
Show properties
Tweet creation timestamp
String representation of the tweet ID
The full text content of the tweet
Number of likes on the tweet
Number of retweets
Number of replies
Number of quote tweets
Copy
curl https://api.corebot.app/v1/tweets/1234567890 \
-H "X-API-Key: your_api_key_here"
Copy
{
"data": {
"created_at": "{timestamp}",
"id_str": "1234567890",
"full_text": "Just launched our new API! Check it out at api.corebot.app",
"favorite_count": 42,
"retweet_count": 12,
"reply_count": 8,
"quote_count": 3,
"user": {
"id_str": "44196397",
"name": "Core X Tracker",
"screen_name": "corextracker",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/123/456_normal.jpg"
},
"entities": {
"hashtags": [],
"urls": [
{
"url": "https://t.co/abc123",
"expanded_url": "https://api.corebot.app",
"display_url": "api.corebot.app"
}
],
"user_mentions": [],
"media": []
}
}
}