Visa requirements

This endpoint gives access to multiple informations:

  • Details about the country of nationality and the country of destination to compose a sentence for display on your website or application.
  • Information on whether or not a visa or travel document is required.
  • List of possible visas and the documents required to obtain them.

Request

GET  https://connect.visamundi.io/v3/partner/{name}/requirements

In this request, {name} must be replaced by your identifier. This, in combination with your API key, will allow you to obtain the desired information.

Parameters of the request

ParameterDescription
access_tokenRequiredThe key to authenticate you to the API.
Learn more about the API key
languageOptionalLearn more about available languages
nationalityRequired2 or 3 character code according to ISO 3166-1 standard.
Learn more
destinationRequired2 or 3 character code according to ISO 3166-1 standard.
Learn more

Response example

{
    "success": true,
    "statusCode": 200,
    "code": "ok",
    "data": {
        "nationality": {
            "name": {
                "common": "France",
                "official": "République française"
            },
            "cca2": "FR",
            "cca3": "FRA",
            "demonyms": {
                "singular": {
                    "f": "Française",
                    "m": "Français"
                },
                "plural": {
                    "f": "Françaises",
                    "m": "Français"
                }
            }
        },
        "destination": {
            "name": {
                "common": "Inde",
                "official": "République de l'Inde"
            },
            "cca2": "IN",
            "cca3": "IND",
            "demonyms": {
                "singular": {
                    "f": "Indienne",
                    "m": "Indien"
                },
                "plural": {
                    "f": "Indiennes",
                    "m": "Indiens"
                }
            },
            "url": {
                "destination": "https://www.visamundi.co/destinations/inde/",
                "form": "https://form.visamundi.app/apply/in/"
            }
        },
        "requirement": "e-visa",
        "visas": [
            {
                "name": "e-Visa Business",
                "reasons": {
                    "business": "Affaires / Business"
                },
                "stay_duration": 180,
                "validity_duration": 365,
                "documents": [
                    {
                        "name": "Passeport",
                        "specificity": "valide au moins 6 mois"
                    },
                    {
                        "name": "Photo d'identité",
                        "specificity": ""
                    },
                    {
                        "name": "Carte de visite",
                        "specificity": ""
                    },
                    {
                        "name": "Lettre d'invitation",
                        "specificity": ""
                    }
                ]
            },
            ...
        ]
    }
}

Parameters of the response

In the response, data contains multiple objects and elements:

Parameter/ObjectDescription
nationalityObject Countries (simplified version)
destinationObject Countries (simplified version)

This object also contains the property url :
- 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
requirementWhether or not a visa or travel document is required.
visasArray of objects containing the visas available for the nationality/destination pair.
- Key name Name of the visa
- Key reasons Reasons linked to the visa
- Key stay_duration Maximum length of stay in the destination country (in days).
- Key validity_duration Maximum length of validity of the visa (in days)
- Key documents Array of documents required for obtaining a visa/travel document.

Document object:
- Key name Name of the document.
- Key specificity Specific features to take into account regarding the document in question.

Visa/Travel document requirement details

Possible values for the parameter requirement sent by the response of this endpoint:

ValueDescription
7365Number of days without visa, if available.
visa freeVisa-free travel (where number of days is unknown or not applicable, such as freedom of movement), including tourist registration requirement for Seychelles.
visa on arrivalDestination that grants visa on arrival, essentially visa-free.
e-visaAn electronic travel document or visa is required.
visa requiredObtaining a visa is required for travel. Includes Cuba Tourist Cards.
no admissionIncludes rare situations, such as wars.
-1When nationality = destination .
no dataNo data available.

Codes and error messages

In addition to the API error codes and messages, this endpoint may return certain other codes and messages:

StatusCodeCodeDescription
200no_country_found« No country found »
The request went well but the countries passed with the parameters nationality or destination n’ont pas été trouvé.
400required_parameters_error« Missing or incorrect required parameters »
The parameters nationality or destination were not sent with the request or do not follow the expected format.
403country_restrictions« Your account has a restriction on this country »
Your account has a restriction and can only view content from certain countries.
403forbidden« Partner ID and API key do not match »
The parameter {name} in the endpoint url does not match the authentication key.