departi_check_visa
Visa requirements for 43 European countries. Covers tourist, nomad, work, study, retirement. Includes destination context. Personalizes when registered.
Parameters6
| nationality | string | required | ISO alpha-2, e.g. 'BE' |
| destination | string | required | ISO alpha-2, e.g. 'PT' |
| purpose | string | optional | e.g. 'tourism', 'remote_work', 'business', 'study', 'retirement' |
| duration | integer | required | Stay in days |
| locale | string | optional | |
| currency | string | optional |
Raw schema
{
"type": "object",
"properties": {
"nationality": {
"type": "string",
"description": "ISO alpha-2, e.g. 'BE'"
},
"destination": {
"type": "string",
"description": "ISO alpha-2, e.g. 'PT'"
},
"purpose": {
"type": "string",
"description": "e.g. 'tourism', 'remote_work', 'business', 'study', 'retirement'",
"default": "tourism"
},
"duration": {
"type": "integer",
"description": "Stay in days"
},
"locale": {
"type": "string",
"default": "en"
},
"currency": {
"type": "string",
"default": "EUR"
}
},
"required": [
"nationality",
"destination",
"duration"
]
}