Looking for a simple way either as web service/site with an API, or directly via the Instagram API to count the number of occurances of a Hashtag. I know of 2 websites that provided Instagram search results but they do not have APIs.
It looks like the /tags/tag-name endpoint will give you what you want:
Get information about a tag object.
Here's their example:
Query: https://api.instagram.com/v1/tags/nofilter?access_token=ACCESS-TOKEN
Response:
{
"data": {
"media_count": 472,
"name": "nofilter",
}
}
[edit]
Just tested it with a fairly generic tag ("cowboys"), and this was the response:
{
"meta": {
"code": 200
},
"data": {
"media_count": 1195735,
"name": "cowboys"
}
}
~1.2 million looks like a fairly reasonable number to me.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With