Find out which hasthags you use the most!
Enter your Twitter handle below to analyze your tweets and see which hashtags you use most frequently.
Getting all those hashtags! This may take a few seconds.
What's actually happening here is that calls are being made to the Twitter API to get the public data for your tweets. A response from the Twitter API is unfortunately limited to only 200 tweets. That means subsequent calls have to be made to get further sets of 200 tweets. There's also a max to how many past tweets you can get for a user, and that limit is 3200 tweets.
Putting all of that together, if you have 3200+ tweets, it means that the Twitter API has to be called 17 times (17 x 200 = 3200) to get all possible tweets. It's like having to load 17 webpages. Even though these "webpages" are just plain text consisting of tweet data, this process still takes a few seconds.
This information is here so that you have something to do while this stuff loads. Hopefully this is all finished by the time you finish reading this.