get https://api.discover.getmoni.io/api/v1/twitters//charts/followers_count_history/
GET /api/v1/twitters/{username}/charts/followers_count_history/
Provides historical data on the total follower count of a Twitter account, structured to enable visualization as a two-dimensional graph (date vs. follower count). The response also includes metrics on follower growth or decline within the specified timeframe and since the account's initial discovery.
Input:
- Username: The username of the account on x.com.
Parameters:
- Timeframe: The time range for the requested data. Supported values:
H1
- Last 1 hourH24
- Last 24 hoursD7
- Last 7 daysD30
- Last 30 daysY1
- Last 1 year
Result:
{
"chart": [
[
1594713600, // Timestamp (UNIX) representing the date
9219 // Follower count on this date
],
[
1594713900, // Timestamp (UNIX)
9218 // Follower count on this date
]
],
"timeframeChange": 0, // Change in follower count over the specified timeframe
"sinceFoundChange": 0, // Change in follower count since the account was first discovered
"sinceFound": 0 // Follower count at the time the account was first discovered
}