Skip to main content
GET
/
v1
/
users
/
{user_id}
/
replies
curl --request GET \
  --url https://api.corebot.app/v1/users/44196397/replies \
  --header 'X-API-Key: your_api_key_here'
{
  "data": [
    {
      "id": "1750234567890",
      "text": "Great question! The API supports pagination through cursor parameters.",
      "created_at": "Mon Nov 18 15:30:45 +0000 2024",
      "author": {
        "id": "44196397",
        "username": "elonmusk",
        "name": "Elon Musk",
        "profile_image_url": "https://pbs.twimg.com/profile_images/123/456_normal.jpg",
        "verified": true
      },
      "author_id": "44196397",
      "conversation_id": "1750234567889",
      "in_reply_to_user_id": "123456789",
      "stats": {
        "retweet_count": 5,
        "reply_count": 3,
        "like_count": 42,
        "quote_count": 0,
        "view_count": 1500
      },
      "possibly_sensitive": false,
      "lang": "en",
      "source": "Twitter Web App"
    }
  ],
  "meta": {
    "result_count": 1,
    "next_token": "DAABCgABF9XBqPz__86AIF9W1OcKAAIX1cDg9_8IgAgAAwAAAAIAAA"
  }
}

Request

user_id
string
required
The user ID
cursor
string
Pagination cursor for fetching next page of results

Headers

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

Response

data
array
Array of reply objects, each containing:
id
string
Reply ID as string
text
string
Full text of the reply
created_at
string
Reply creation timestamp
author
object
Author information (same format as user response)
author_id
string
ID of the reply author
conversation_id
string
ID of the conversation thread
in_reply_to_user_id
string
ID of the user being replied to
stats
object
Engagement statistics:
  • retweet_count: Number of retweets
  • reply_count: Number of replies
  • like_count: Number of likes
  • quote_count: Number of quotes
  • view_count: Number of views
meta
object
curl --request GET \
  --url https://api.corebot.app/v1/users/44196397/replies \
  --header 'X-API-Key: your_api_key_here'
{
  "data": [
    {
      "id": "1750234567890",
      "text": "Great question! The API supports pagination through cursor parameters.",
      "created_at": "Mon Nov 18 15:30:45 +0000 2024",
      "author": {
        "id": "44196397",
        "username": "elonmusk",
        "name": "Elon Musk",
        "profile_image_url": "https://pbs.twimg.com/profile_images/123/456_normal.jpg",
        "verified": true
      },
      "author_id": "44196397",
      "conversation_id": "1750234567889",
      "in_reply_to_user_id": "123456789",
      "stats": {
        "retweet_count": 5,
        "reply_count": 3,
        "like_count": 42,
        "quote_count": 0,
        "view_count": 1500
      },
      "possibly_sensitive": false,
      "lang": "en",
      "source": "Twitter Web App"
    }
  ],
  "meta": {
    "result_count": 1,
    "next_token": "DAABCgABF9XBqPz__86AIF9W1OcKAAIX1cDg9_8IgAgAAwAAAAIAAA"
  }
}