GET_IMMIGRATION_INFO_BY_COUNTRY
Retrieve detailed immigration details for a specific country using its country code. Simplify travel planning with accurate visa and entry requirements data.
Instructions
Get immigration information for a specific country.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
countryCode | Yes |
Input Schema (JSON Schema)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"countryCode": {
"type": "string"
}
},
"required": [
"countryCode"
],
"type": "object"
}