The Most Active and Friendliest
Affiliate Marketing Community Online!

“Propeller”/  MyBid

Is there a free way to track followers growth over time on Twitter?

You can track your followers growth with FollowerAudit.

However it's not free, but the tool provides many features that are listed below



  • Track your followers growth - Get to know your followers growth percentage. Track growth of followers and following growth of your account.
  • Track your Competitor’s followers growth - You can track your or your competitors followers growth and compare with them. Get to know your competitors' followers growth percentage.
  • Most accurate stats - You will get the most accurate statistics - no false information. You can Easily identify high and low performing metrics which can help you in analyzing trends which affect the growth of your follower base
  • Followers growth metrics - FollowerAudit’s Twitter follower tracker provides you with followers growth rate metrics over a graph in a simplified manner for a better understanding.
Hope you find this answer helpful
 
Yep.

  1. Hootsuite Analytics tools gives you a great overview of audience growth, engagement, link clicks, total posts, and a lot more from your Twitter account(s). The downside is that it is a paid program.
  2. Twitter Analytics: The free alternative is to use Twitter’s native analytics tools. You’ll be able to view the total number of tweets you’ve shared, impressions, profile visits, mentions, and follower growth.
 
As it was mentioned above, Twitter does offer such a functionality. But you can also use third-party tools like FollowerAudit. I'm not quite sure if it's free, but you can google it.
 
free one? i don't think so. I know about paid ones, maybe these tools have trial version but I am not sure. you perhaps have to be convinced in it on your own. just search for such tools in the net.
 
Hi, Here is the way of you, In the follower section of your dashboard, you can track how your following has changed over the last 30 days, and also how many new followers you've received per day. If you notice a particular day has either gained or lost you several followers, check what you Tweeted that day to try and determine the cause.
 


Build your own if you want free --it's possible in theory.

You would have to database the data on your own database server.

But you need the user ID that you want the data for.
@some_name
 
this is what is possible?
SQL:
CREATE TABLE `user` (
  `twitter_id` int(10) unsigned NOT NULL,
  `name` varchar(140) NOT NULL,
  `screen_name` varchar(30) NOT NULL,
  `location` varchar(180) default NULL,
  `description` varchar(300) default NULL,
  `profile_image_url` varchar(400) NOT NULL,
  `url` varchar(400) default NULL,
  `protected` varchar(5) default NULL,
  `followers_count` int(10) unsigned NOT NULL,
  `profile_background_color` varchar(8) default NULL,
  `profile_text_color` varchar(8) default NULL,
  `profile_link_color` varchar(8) default NULL,
  `profile_sidebar_fill_color` varchar(8) default NULL,
  `profile_sidebar_border_color` varchar(8) default NULL,
  `friends_count` int(10) unsigned NOT NULL,
  `created_at` timestamp NOT NULL default '0000-00-00 00:00:00',
  `favourites_count` int(10) unsigned NOT NULL,
  `utc_offset` int(10) default NULL,
  `time_zone` varchar(120) default NULL,
  `profile_background_image_url` varchar(400) default NULL,
  `profile_background_tile` varchar(5) default NULL,
  `statuses_count` int(10) unsigned default '0',
  `status_id` bigint(20) unsigned default '0',
  `status_created_at` timestamp NULL default NULL,
  `status_text` varchar(300) default NULL,
  `status_source` varchar(200) default NULL,
  `status_truncated` varchar(5) default NULL,
  `status_in_reply_to_status_id` bigint(20) unsigned default NULL,
  `status_in_reply_to_user_id` int(10) unsigned default NULL,
  `status_favorited` varchar(5) default NULL,
  `status_in_reply_to_screen_name` varchar(120) default NULL
  PRIMARY KEY  (`twitter_id`),
  UNIQUE KEY `screen_name` (`screen_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
banners
Back