get https://api.discover.getmoni.io/api/v1/twitters//charts/smart_mentions_count_history/
GET /api/v1/twitters/{username}/charts/smart_mentions_count_history/
Provides historical data on the count of "smart" mentions for a Twitter account. These mentions come from "smart" accounts manually selected by our moderators and include mentions from accounts that are not necessarily followers. The data is structured for visualization as a two-dimensional graph (date vs. mention count). The response also includes details on changes in mention count over the specified timeframe and since the account was initially identified.
Input:
- Username: The username of the account on x.com.
Parameters:
- Timeframe: The time range for which data will be returned. Supported values:
H1
- Last 1 hourH24
- Last 24 hoursD7
- Last 7 daysD30
- Last 30 daysY1
- Last 1 year
Result:
{
"chart": [
[
1594713600, // UNIX timestamp representing the date
9219 // Historical value (mention count) on this date
],
[
1594713900, // UNIX timestamp
9218 // Historical value (mention count) on this date
]
],
"timeframeChange": 0, // Change in mention count during the specified timeframe
"sinceFoundChange": 0, // Change in mention count since the account was first discovered
"sinceFound": 0 // Mention count at the time the account was first discovered
}