API Reference

GET /api/v1/twitters/{username}/tweets/

Retrieves a list of all indexed posts from a Twitter account, including attached media and detailed statistics (views, likes, retweets, and bookmarks). To enable indexing for an account, you must first send a POST request to /api/v1/twitters/{username}/tracker/tweet/.

Input:

  • Username: The username of the account on x.com.

Parameters:

  • fromDate, toDate: Date range filter for posts.
    • fromDate: UNIX timestamp of the earliest post to include.
    • toDate: UNIX timestamp of the most recent post to include.
  • Limit: The maximum number of posts to return in the response.

Result:

{
"items": [
{
"id": 87030947, // Internal ID of the tweet in [discover.getmoni.io](http://discover.getmoni.io/)
"tweetCreatedAt": 1733209206, // Timestamp (UNIX) of when the post was created on [x.com](http://x.com/)
"twitterTweetId": "1863840619921359350", // Internal ID of the post on [x.com](http://x.com/)
"text": "another memecoin or winter boots? 🤔 https://t.co/6ZLenye4V5", // Raw text of the post
"textWithEntities": "another memecoin or winter boots? 🤔 ", // User-visible text of the post on [x.com](http://x.com/)
"entities": {}, // List of all media, links, and mentions in the post
"inReplyToTwitterUserId": null, // ID of the user the post replies to, if applicable
"inReplyToTwitterTweetId": null, // ID of the post being replied to, if applicable
"authorTwitterUserId": "1026753750038470658", // Internal ID of the post author on [x.com](http://x.com/)
"likeCount": 2, // Number of likes on the post
"retweetCount": 0, // Number of retweets of the post
"replyCount": 0, // Number of replies to the post
"impressionCount": 46, // Number of impressions of the post
"quoteCount": 0, // Number of quote retweets of the post
"bookmarkCount": 0, // Number of users who bookmarked the post
"referencedTweetAuthorTwitterUserId": null // Internal ID of the author on [x.com](http://x.com/) whose post was retweeted, if applicable
}
]
}