Could someone advise on the quota limits to Google maps geocoding api? I'm using geocoding on android. The Google maps Api site states the limit is 2,500 per day. Is this total for the API key? or per IP address? I have found this article: http://code.google.com/apis/maps/articles/geocodestrat.html#quota-limits

which states that the quota limit is tied to the ip address, however this is referring to websites. Can anyone answer this? Obviously this is a huge difference and 2,500 geocode lookups per day per device would be enough for most applications.

link|improve this question

74% accept rate
I wonder how this works for phones? Does the NAT'ing of a providers phone matter? – JPM May 1 at 20:25
@jpm quota appears to be based on IP address, so each phone would have 2500/ day. I don't know about nationality but guessing there is no difference.... – Patrick May 1 at 22:28
Well the phone companies NAT the addresses and therefore the IPs to the outside might all look the same, hence there might be an issue in this case. Not really sure the topography of a phone providers... but we ran into this case where we needed direct socket connections and found out about the NAT'ing. We ended up going with a private cell network to get static IP's for each device. – JPM May 1 at 22:46
feedback

1 Answer

up vote 1 down vote accepted

From what I understand it's per single IP address per day. This is the exact machine making the request. So if someone else was using your application it would limit it to their machine.

Your API key can be used from multiple devices. This same principle applies to all of Google's APIs. I use the translate API, and if I was limited to per API key I'd be screwed and would max out.

Of course this doesn't apply if you pay Google for use of their API (Billing in the API console). I pay out the a$$ for Google Translate API :(

Here's my link for my translate app :) sorry had to plug it in... http://itunes.apple.com/us/app/translate/id473574277

link|improve this answer
Ok. I hope this is the case, however I can't give you the correct answer cause your not 100% sure. – Patrick Nov 21 '11 at 21:39
I'm like 99.9%. I think the same principle applies to the translate api, but it could be miraculously different. i would seriously doubt it though. just don't get a premier account, with 2500 it should be more than enough. You writing a mobile or web app? – AmitApollo Nov 21 '11 at 21:41
Mobile app. Sounds like the limit is 2500 per ip, which is plenty for my needs. Documentation is not exactly clear on this. – Patrick Nov 22 '11 at 1:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.