Request
Pagination cursor for fetching next page of results
Your API key for authentication
Response
Array of reply objects, each containing:Author information (same format as user response)
ID of the conversation thread
ID of the user being replied to
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
Number of results in this page
Token for fetching the next page (if available)
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"
}
}