0

I'm new to writing code and I'd like to know if there's a way to get the total number of posts per hashtag from Instagram / Facebook / Twitter / Pinterest.

For instance, If a picture is tagged with the #fun on

Instagram with 4000 photos Facebook with 2000 posts Twitter with 2000 posts Pinterest with 20000 pins,

I would like to pull the numbers 4000, 2000, 2000 and 20000 from these above mentioned APIs. Is this possible? Any links or tutorials to this would be helpful!

Thanks Vila

Tobi
  • 31,405
  • 8
  • 58
  • 90
user3886632
  • 87
  • 3
  • 9

1 Answers1

1

In Facebook, there's the Hashtag Counter API (you have to apply for this API before you can use it):

Twitter has no direct API for that, so you'll have to count the search results:

For Instagram, you can use the /tags/{tag_name} endpoint:

Pinterest doesn't have an "official" API for this use case. There are some insights at

Community
  • 1
  • 1
Tobi
  • 31,405
  • 8
  • 58
  • 90