google-trends-api
google-trends-api copied to clipboard
An API layer on top of google trends
`googleTrends.interestOverTime({keyword: 'Women\'s march'}) .then(function(results){ console.log('These results are awesome', results); }) .catch(function(err){ console.error('Oh no there was an error', err); });`
None of the sample code works in RunKit
Hello I'm doing a basic function with the google-trends-api and I'm getting the last value from 3 days ago. For example: const googleTrends = require("google-trends-api"); const getData = (stockName) =>...
Using relatedQueries and passing in any form of array for keyword field returns results that only process the first keyword. The remaining keywords in the array have no results returned....
``` const googleTrends = require('google-trends-api'); googleTrends.relatedQueries({ keyword: 'tips', startTime: new Date('2021-01-20'), endTime: new Date('2021-01-22'), geo:'US' }) .then((res) => { console.log(res); }) .catch((err) => { console.log(err); }) ``` returns: `{"default":{"rankedList":[{"rankedKeyword":[]},{"rankedKeyword":[]}]}}` Am...
Hi, I need to use this package with the TypeScript based node/express application but I think it doesn't support it yet, Please kindly give the support for the TypeScript. Thanks
Currently this library is heavily restricted as any proxy implementation must follow the `http.Agent` implementation. However, for many other environments it is desirable use the library only for preprocessing. A...
`relatedTopics` seems to only accet one parameter at a time. e.g. If I have a keyword "Apple", this would work. Also this `["Apple"]` would work too. However, if I have...
The suggestions() returns a json format with the following keys: 'mid', 'title', 'Topic' Could you please tell me what does the "mid" actually represent in the response? Or documentation where...
Hi everyone, i hope you can help me with this, I´m just started to learn I try to use the APPI but when i make the example  I received...