List of countries
This endpoint returns the list of countries with some data available on each of them (names, codes, gentiles, position).
Request:
GET https://connect.visamundi.io/v3/countries
Parameters of the request:
Parameter | Description | |
---|---|---|
access_token | Required | The key to authenticate you to the API. Learn more about authentication |
language | Optional | Learn more about available languages |
Response example:
{
"success": true,
"statusCode": 200,
"code": "ok",
"data": {
"countries": [
{
"name": {
"common": "France",
"official": "République française"
},
"cca2": "FR",
"cca3": "FRA",
"ccn3": "250",
"flag": "🇫🇷",
"demonyms": {
"singular": {
"f": "Française",
"m": "Français"
},
"plural": {
"f": "Françaises",
"m": "Français"
}
},
"latlng": [
46.2276001,
2.21374989
],
"url": {
"destination": "https://www.visamundi.co/destinations/inde/",
"form": "https://form.visamundi.app/apply/in/",
"official": "https://indianvisaonline.gov.in/"
}
},
[...]
]
}
}
Parameters of the response:
In the response, data
contains an array (countries
) of objects Countries (in a simplified version):
Parameter/Object | Description |
---|---|
name | Object containing the common name (common ) of the country as well as its official name (official ). |
cca2 | 2-letter country code based on ISO 3166-1. Learn more about country codes |
cca3 | 3-letter country code based on ISO 3166-1. Learn more about country codes |
ccn3 | Numeric country code based on ISO 3166-1. |
flag | Emoji flag |
demonyms | Name given to inhabitants (singular and plural). Key: f (feminine) or m (masculine).Value: name given according to gender. |
latlng | Array containing the latitude and longitude of the center of the country. |
url | Objet contenant différentes urls liées à Visamundi : - Key destination URL of the page dedicated to the destination on the Visamundi website.- Key form URL of the visa application form for this destination.- Key official URL of the authorities official sebsite(Note: these URLS might be empty strings if no resources are available) |