Magento – Get Countries and related Cities REST API

apimagento2rest

I have a form in my mobile app for shipping information. I am looking for REST API to get countries and its related cities.

I found only an API:

V1/directory/countries

How can I get cities for each country ?

Best Answer

I have developed an online service called GeoDB that does this and more. To your specific question, try the following requests:

List of all countries

http://geodb-free-service.wirefreethought.com/v1/geo/countries

List of cities, filtered for United States, Spain, and France

http://geodb-free-service.wirefreethought.com/v1/geo/cities?countryCodes=US,ES,FR

For more info and docs, check out the portal site.

Related Topic