A free to use API to get a lists of various common datasets such as:
- Languages
- Countries
All the endpoints with data are cached using Now CDN to give the best performance all the time.
GET /languages
Returns the list of languages as:
{
"languages": [
...
{
"name": "Spanish",
"nativeName": "español",
"code": "es"
}
...
]
}
Each language contains its name in English, the native name and the language code.
GET /countries
Returns the list of countries as:
{
"countries": [
...
{ "code": "US", "country": "United States" }
...
]
}
Each country contains the name and international code.