A curation of Countries data including (dial codes, states, cities, currencies, capitals etc) served over a REST API so you don't have to have them locally in your applications. This means lighter application sizes as you wouldn't have to install another package to use geo data. Please note that this doesn't guarantee complete or correct data, feel free to raise issues where necessary.
The API does not require any form of Authentication or token.
const BASE_URL = 'https://countriesnow.space/api/v0.1/countries'
let getCountries = async () => {
const response = await fetch(`${BASE_URL}`).then(response => response.json())
const { data } = response
data.forEach((country) => {
console.log(country) // {"country": "Afghanistan", "cities": [ "Herat", "Kabul", "Kandahar", "Molah", ...]}
})
}
The API does not require any form of Authentication or token.
git clone https://github.com/YourName/countriesNowAPI.git
cd countriesNowAPI
npm i
npm start
npm run integration:test
Please read the contribution guide here
Feel free to support and keep the API running
✨ All thanks to this gist, datahub, and this repository for the data curated.