How to get City, State From a Zip or Postal Code throughout world using any API or web service with PHP. I have tired Google Maps Ge coder API it works fine for US, Canada but not for UK and Mexico for all countries. Also I used Yahoo API for this it worked more than Google but against some Zip Codes and Postal codes it returns results from Different countries.

Does any body know if I have to get City and State/Province against US, UK, Canada and Mexican zip/postal codes which one API or Database I can Use.

thanks in Advance.

link|improve this question

55% accept rate
You're trying to find waldo aren't you!? – Phil Jul 27 '11 at 19:15
I think it is possible may be I'm not getting it right. I thought Google Must have to work for all but it isn't. And Same with Yahoo. – junjua Jul 27 '11 at 19:19
feedback

1 Answer

Well, not exactly sure this is what your looking for but I am working on something similar. I have been using the following free web services. User enters a country and Postal Code to be used in the web service calls.

Documentation: www.geonames.org/export/web-services.html

User needs to enter a country and Postal code. To get the list of countries: http://api.geonames.org/countryInfo?username=demo ** Register and replace demo with your registration id.

Using the country code selected from above service and the postal code, call: http://api.geonames.org/postalCodeLookupJSON?postalcode=23454&country=US&username=demo

Hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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