Referring to here in Google Official documentation, a developer API key is needed, this means that each request will count towards your ( the developer's) quota.
In fact, in the example given by Google, one needs to specify an developer API key in the request:
https://maps.googleapis.com/maps/api/elevation/json?locations=39.7391536,-104.9847034|36.455556,-116.866667&key=YOUR_API_KEY
However, I tested with the above request, and I remove the &key=YOUR_API_KEY
, I can still get the correct response! ie: this still works!
https://maps.googleapis.com/maps/api/elevation/json?locations=39.7391536,-104.9847034|36.455556,-116.866667
So, can the elevation request work without developer API key? If yes, this means one that can generate millions of elevation requests in a single day and not getting charged, am I right?