Vaccines

This endpoint provides information on the vaccines recommended or required for a destination country as well as any recommendations or comments regarding each vaccine.

Request

GET  https://connect.visamundi.io/v3/vaccines

Parameters of the request

ParameterDescription
access_tokenRequiredThe key to authenticate you to the API.
Learn more about authentication
languageOptionalLearn more about available languages
country_codeRequired3-letter country code based on ISO 3166-1.
Learn more about country codes

Response example

{
    "success": true,
    "statusCode": 200,
    "code": "ok",
    "data": {
        "destination": {
            "name": {
                "common": "Inde",
                "official": "République de l'Inde"
            },
            "cca2": "IN",
            "cca3": "IND"
        },
        "vaccines": [
            {
                "name": "Hépatite B",
                "slug": "hepatite-b",
                "type": "recommended",
                "comment": "Pour des séjours longs ou répétés."
            },
            [...]
        ]
    }
}

Parameters of the response

In the response, data contains an object destination (Object Countries dans une version simplifiée) ainsi qu’un tableau d’objets vaccins (vaccines) :

Parameter/ObjectDescription
nameName of the vaccine
slugSlug based on the vaccine name.
typeType of precaution to take regarding this vaccine before traveling to the destination country.
Le vaccin peut être recommandé (recommended) ou bien exigé (needed).
commentAdditional comment or recommendation regarding the vaccine.

Codes and error messages

In addition to codes et messages d’erreur de l’API, this endpoint mays return other codes and messages:

StatusCodeCodeDescription
200no_country_found« No country found »
The request went well but the country code passed in the parameters wasn't found.
400required_parameters_error« Missing or incorrect required parameters »
The parameter country_code 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.