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
Parameter | Description | |
---|---|---|
access_token | Required | The key to authenticate you to the API. Learn more about authentication |
language | Optional | Learn more about available languages |
country_code | Required | 3-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/Object | Description |
---|---|
name | Name of the vaccine |
slug | Slug based on the vaccine name. |
type | Type of precaution to take regarding this vaccine before traveling to the destination country. Le vaccin peut être recommandé ( recommended ) ou bien exigé (needed ). |
comment | Additional 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:
StatusCode | Code | Description |
---|---|---|
200 | no_country_found | « No country found » The request went well but the country code passed in the parameters wasn't found. |
400 | required_parameters_error | « Missing or incorrect required parameters » The parameter country_code were not sent with the request or do not follow the expected format. |
403 | country_restrictions | « Your account has a restriction on this country » Your account has a restriction and can only view content from certain countries. |