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:

ParameterDescription
access_tokenRequiredThe key to authenticate you to the API.
Learn more about authentication
languageOptionalLearn 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/ObjectDescription
nameObject containing the common name (common) of the country as well as its official name (official).
cca22-letter country code based on ISO 3166-1.
Learn more about country codes
cca33-letter country code based on ISO 3166-1.
Learn more about country codes
ccn3Numeric country code based on ISO 3166-1.
flagEmoji flag
demonymsName given to inhabitants (singular and plural).
Key: f (feminine) or m (masculine).
Value: name given according to gender.
latlngArray containing the latitude and longitude of the center of the country.
urlObjet 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)