Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google elevation API and limit rate

To get the altitude of several points, I use the Elevation API provided by Google. The problem I'm facing is that I regularly receive an OVER_QUERY_LIMIT error message, certainly because I'm asking altitudes at a too high rate.

The Google documentation speaks about such a limit but doesn't give any value for it. Does anyone know at what level this maximum interrogation rate is set?

like image 372
Zelig Avatar asked Apr 10 '26 11:04

Zelig


1 Answers

The Google Elevation page gives you this:

Usage Limits

Use of the Google Elevation API is subject to a limit of 2,500 requests per day (Maps API for Business users may send up to 100,000 requests per day). In each given request you may query the elevation of up to 512 locations, but you may not exceed 25,000 total locations per day (1,000,000 for Maps API for Business users). This limit is enforced to prevent abuse and/or repurposing of the Elevation API, and this limit may be changed in the future without notice. Additionally, we enforce a request rate limit to prevent abuse of the service. If you exceed the 24-hour limit or otherwise abuse the service, the Elevation API may stop working for you temporarily. If you continue to exceed this limit, your access to the Elevation API may be blocked.

You could have found this yourself if you had Googled for it.

like image 178
NickT Avatar answered Apr 12 '26 01:04

NickT