API Reference

GET /api/v1/twitters/{username}/charts/smart_followers_count_history/

Provides historical data on the count of "smart" followers (manually curated by moderators) for a Twitter account, structured to support visualization as a two-dimensional graph (date vs. follower count). The response also includes details on follower changes within a specified timeframe and since the account's discovery, capturing both new follower additions and removals.

Input:

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

Parameters:

  • Timeframe: The time range for the returned data. Possible values:
    • H1 - Last 1 hour
    • H24 - Last 24 hours
    • D7 - Last 7 days
    • D30 - Last 30 days
    • Y1 - Last 1 year

Result:

{
"chart": [
[
1594713600, // Timestamp (UNIX) representing the date
9219 // Historical value on this date
],
[
1594713900, // Timestamp (UNIX)
9218 // Historical value on this date
]
],
"timeframeChange": 0, // Change in value over the specified timeframe
"sinceFoundChange": 0, // Change in value since the account was first identified
"sinceFound": 0 // Value at the time the account was first discovered
}
Language
Click Try It! to start a request and see the response here!