Reputation: 112
I working on an application I would like to use Google API place autocomplete. It looks like every Google API has a limited use of,2 500 requests per day, even though this special API isn't mentioned in the following page API Google Maps for Work.
My question is :
How do they count requests with this API?
Upvotes: 3
Views: 1508
Reputation: 116958
Place Autocomplete Address Form uses the Google Places API, it also uses the Google Places JavaScript library.
That being said if you check the Usage Limits and billing for the Google places api web service you will notice at the top it states.
These limits do not apply to the Places JavaScript Library, which does not require an API key, and is covered by the Google Maps JavaScript API limits.
If you then follow the link over to the Google Maps JavScript API v3 Usage limits and billing you will see it states.
Most websites and applications may use the Google Maps API free of charge. However, if you consistently generate a high amount of traffic, usage limits apply and you will need to pay for extra usage. If your site or application generates 25 000 map loads or more each day, for more than 90 consecutive days, we’ll get in touch with you to talk about payment. Don’t worry, if you go over the limits, we won’t immediately shut off your API access or display error messages on your site.
Google Places API doesn't load maps I suspect that there is no limit to how much you can use it. I suspect that this is a public api, which has no limits. I believe this is true because the Places API doesn't require an API key if there is no API key Google really has no way of knowing who you. There will be no way of knowing that you send 1 or 10000 requests to the system other then maybe monitoring your ip address. Even if they did monitor your IP address they would have no way of contacting you.
Upvotes: 1