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
}
}
Retrieve a user tweet timeline with pagination support
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
}
}
Show properties
Show properties
Show properties
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
}
}