google-trends-api icon indicating copy to clipboard operation
google-trends-api copied to clipboard

Not able to get data for most recent 2 days

Open bitcoinvsalts opened this issue 5 years ago • 0 comments

I tried the following code but it does not return the last two days of data. any solution?

googleTrends.interestOverTime({
keyword: 'bitcoin',
startTime: new Date('2020-02-03'),
granularTimeResolution: true
})
.then(function(results){
  console.log('These results are awesome', results);
})
.catch(function(err){
  console.error('Oh no there was an error', err);
});

bitcoinvsalts avatar Feb 12 '20 20:02 bitcoinvsalts