Google Trends monthly data export -


if write following url in browser, csv file weekly data google trends:

www.google.com/trends/trendsreport?q=searchterm&export=1

in past, file have been same 1 obtained manually clicking "export csv" button on google trends page. now, instead, using button data file monthly data.

does know whether possible obtain monthly file using url similar above-mentioned one?

you use date parameter request

www.google.com/trends/trendsreport?q=searchterm&export=1&date=01/2010 37m 

some pages recommend use more 36 months, tried 140 months , returns weekly data. check page more reference, https://github.com/generalmills/pytrends

also, check how call url

https://www.google.com.mx/trends/api/widgetdata/multiline/csv?req=%7b%22time%22%3a%222004-01-01%202016-10-07%22%2c%22resolution%22%3a%22month%22%2c%22locale%22%3a%22es-419%22%2c%22comparisonitem%22%3a%5b%7b%22geo%22%3a%7b%7d%2c%22complexkeywordsrestriction%22%3a%7b%22keyword%22%3a%5b%7b%22type%22%3a%22broad%22%2c%22value%22%3a%22pope%22%7d%5d%7d%7d%5d%2c%22requestoptions%22%3a%7b%22property%22%3a%22%22%2c%22backend%22%3a%22izg%22%2c%22category%22%3a0%7d%7d&token=app6_ueaaaaav_ktww_1wnwlygrce91gqbixkgpv4lgg&tz=300

this return monthly data, appear need use token

decoded url:

https://www.google.com.mx/trends/api/widgetdata/multiline/csv?req={"time":"2004-01-01 2016-10-07","resolution":"month","locale":"es-419","comparisonitem":[{"geo":{},"complexkeywordsrestriction":{"keyword":[{"type":"broad","value":"pope"}]}}],"requestoptions":{"property":"","backend":"izg","category":0}}&token=app6_ueaaaaav_ktww_1wnwlygrce91gqbixkgpv4lgg&tz=300


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -