IDEA-godwin / countriesNowAPI

An Open source API for retrieving countries and cities information. 🌎

Home Page:http://countriesnow.space

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CountriesNow

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.

landing page

USAGE

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.


Local Setup

git clone https://github.com/YourName/countriesNowAPI.git

Change directory

cd countriesNowAPI

Install packages

npm i

Start Project

npm start

Run test

npm run integration:test

Contribution

Please read the contribution guide here

✨ All thanks to this gist, datahub, and this repository for the data curated.

About

An Open source API for retrieving countries and cities information. 🌎

http://countriesnow.space

License:MIT License


Languages

Language:JavaScript 100.0%Language:Handlebars 0.0%Language:CSS 0.0%Language:Makefile 0.0%Language:Shell 0.0%