How can I get a stackoverflow tag popularity history from the stackexchange api ?
Currently I get the total of tags over a specific period of time but I have to perform a new http call for each period of time. I searched in the documentation but I didn't find a way to do this.
I want to get an array of total questions with a specific tag paginated by a period of time ( month / week / day ).
What I currently have
Request URL
Response
{"total":785846}
What I want
Response
[
{
total: 12345,
fromdate: 2015-01-01,
todate: 2015-02-01
},
{
total: 54321,
fromdate: 2015-02-01,
todate: 2015-03-01
}
]
( Here is my little project: http://fredericlefeurmou.github.io/stack-overlow-analytics )