APIs V1Externalize what you don't need to storeDo you need an API to get a country list or just an API to get coin list in the world? We have it! And it's free :) Our APIs are based on json. CountriesGet Country list with: CountryCode and CountryName API specification: Method: GET Input: nothing Output: json array with a list of countryId and countryName Get Country/ies population: CountryName and Population API specification: Method: GET Input: if you want to fetch for a specific country: countryName= Output: json array with a list of countryName and population. In case you've specified the parameter countryName it will response 2 things: countryName and population
For list of countries: https://api.neppia.com/countries/v1/getCountryPopulation.php
For specific country: https://api.neppia.com/countries/v1/getCountryPopulation.php?countryName=Spain Get Country/ies land area: CountryName and LandArea API specification: Method: GET Input: if you want to fetch for a specific country: countryName= Output: json array with a list of countryName and landArea. In case you've specified the parameter countryName it will response 2 things: countryName and landArea
For list of countries: https://api.neppia.com/countries/v1/getCountryLandArea.php
For specific country: https://api.neppia.com/countries/v1/getCountryLandArea.php?countryName=Portugal Get Country/ies capital: CountryName and capital API specification: Method: GET Input: if you want to fetch for a specific country: countryName= Output: json array with a list of countryName and capital. In case you've specified the parameter countryName it will response 2 things: countryName and capital | |