LQ
Get comprehensive information about countries via a RESTful API.
https://restcountries.com/v3.1/name/:namefullTextSearch by the country's full name
curl -X GET \ "https://restcountries.com/v3.1/name/:name"
[
{
"name": {
"common": "India",
"official": "Republic of India"
},
"tld": [
".in"
],
"cca2": "IN",
"region": "Asia",
"subregion": "Southern Asia",
"languages": {
"eng": "English",
"hin": "Hindi"
},
"population": 1380004385,
"flags": {
"png": "https://flagcdn.com/w320/in.png",
"svg": "https://flagcdn.com/in.svg"
}
}
]