Skip to main content
GET
/
v1
/
tweets
/
{tweet_id}
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": []
    }
  }
}

Parameters

tweet_id
string
required
The ID of the tweet to retrieve

Headers

X-API-Key
string
required
Your API key for authentication

Response

data
object
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": []
    }
  }
}