Skip to main content
GET
https://api.corebot.app
/
v1
/
users
/
{user_id}
/
tweets
curl --request GET \
  --url https://api.corebot.app/v1/users/44196397/tweets \
  --header 'X-API-Key: your_api_key_here'
{
  "data": {
    "entries": [
      {
        "legacy": {
          "created_at": "{timestamp}",
          "id_str": "1750123456789",
          "full_text": "Excited to announce our new API features! Now with better performance and more endpoints.",
          "favorite_count": 156,
          "retweet_count": 42,
          "reply_count": 23,
          "quote_count": 8,
          "entities": {
            "hashtags": [],
            "urls": [],
            "user_mentions": [],
            "media": []
          }
        }
      },
      {
        "legacy": {
          "created_at": "{timestamp}",
          "id_str": "1749987654321",
          "full_text": "API maintenance complete. All systems operational.",
          "favorite_count": 89,
          "retweet_count": 12,
          "reply_count": 5,
          "quote_count": 2,
          "entities": {
            "hashtags": [],
            "urls": [],
            "user_mentions": [],
            "media": []
          }
        }
      }
    ],
    "cursor_bottom": "DAABCgABF9W0YPz__86AIF9VdOcKAAIX1bPg9_8IgAgAAwAAAAIAAA",
    "has_more": true
  }
}

Request

user_id
string
required
The ID of the user whose tweets to retrieve
cursor
string
Pagination cursor for fetching next page of results

Headers

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

Response

data
object
curl --request GET \
  --url https://api.corebot.app/v1/users/44196397/tweets \
  --header 'X-API-Key: your_api_key_here'
{
  "data": {
    "entries": [
      {
        "legacy": {
          "created_at": "{timestamp}",
          "id_str": "1750123456789",
          "full_text": "Excited to announce our new API features! Now with better performance and more endpoints.",
          "favorite_count": 156,
          "retweet_count": 42,
          "reply_count": 23,
          "quote_count": 8,
          "entities": {
            "hashtags": [],
            "urls": [],
            "user_mentions": [],
            "media": []
          }
        }
      },
      {
        "legacy": {
          "created_at": "{timestamp}",
          "id_str": "1749987654321",
          "full_text": "API maintenance complete. All systems operational.",
          "favorite_count": 89,
          "retweet_count": 12,
          "reply_count": 5,
          "quote_count": 2,
          "entities": {
            "hashtags": [],
            "urls": [],
            "user_mentions": [],
            "media": []
          }
        }
      }
    ],
    "cursor_bottom": "DAABCgABF9W0YPz__86AIF9VdOcKAAIX1bPg9_8IgAgAAwAAAAIAAA",
    "has_more": true
  }
}