curl https://api.corebot.app/v1/tweets/1234567890 \
-H "X-API-Key: your_api_key_here"
{
"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": []
}
}
}
Retrieve detailed information about a specific tweet
curl https://api.corebot.app/v1/tweets/1234567890 \
-H "X-API-Key: your_api_key_here"
{
"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": []
}
}
}
Show properties
curl https://api.corebot.app/v1/tweets/1234567890 \
-H "X-API-Key: your_api_key_here"
{
"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": []
}
}
}