Limit Google Autocomplete Requests?

I plan to use Google Autocomplete on my site. Is there a limit on the number of requests I can make?

I use the exact code provided in this question: How to limit google autocomplete results only for City and Country

+6
source share
3 answers

For the Google Places API:

Applications sending requests with an API key are allowed 1,000 requests in 24 hours. You can increase this limit to 150,000 requests within 24 hours by verifying your identity through the Google Developers Console. Credit card verification required by enabling billing in the console.

For the JavaScript library in Google Places:

These restrictions do not apply to the JavaScript places library, which does not require an API key, and applies to the Google Maps JavaScript API.

source: https://developers.google.com/places/webservice/usage

+5
source

You can use the Google Maps Javascript API Places without any problems. The restrictions mentioned in other answers apply to the Places APIs, and not to the Maps API Maps library. From https://developers.google.com/places/uplift

Choose the right service for your application

If you are developing a web application that is only required to search for places and does not send new places or Place Bumps, you should use the Maps API Maps library and not use the Website Addresses web service. The Places library assigns a quota for each end user, not for each key. This means that the available quota is increasing with your user base, and not limited to a fixed amount.

+2
source

Limits of use

The Google Places API has the following query limits:

Users with an API key are allowed 1,000 requests in 24 hours .

Users who have verified their identity through the API console are allowed 100,000 requests within 24 hours .

A credit card is required for verification by authorizing payment in the console. We ask your credit card to simply verify your identity. There is no charge for using the card.
Although a lower limit is sufficient for development and testing, we recommend that you enable a higher limit before starting the application. You can request an additional quota .
Please note that some services may have a multiplier. For example, the text Search is subject to a 10-fold multiplier , as a result of which each text search query is calculated as 10 queries against your quota.


Update:

I believe that with the Google Maps API JavaScript API v3 you are limited to this policy and with the Google Places API you have these restrictions .
I think you need to pass a test to raise the limit from 1000 to 100000

0
source

All Articles