0

So I'm using Google Books API and my code looks as follow:

 axios
  .get(
    "https://www.googleapis.com/books/v1/volumes?q=" +
      this.props.categoryName +
      "&key=myKey"
  )
  .then((response) => {
    console.log(response);
  })
  .catch((err) => console.error(err));

On using this API, I'm getting the following error:

request failure error

I did a bit of research online and it's saying that we get this error when we make way too many requests from a given API key but I have made only 5 till now and still it's throwing this error.

AnonSar
  • 556
  • 1
  • 7
  • 24

1 Answers1

0
The default limit is 1,000 per day.

More info - https://www.codementor.io/@srvkataria/how-i-bypassed-google-books-api-rate-limits-or-quota-vpmra29q0

Dlucidone
  • 1,091
  • 9
  • 23