GET_VISA_INFO_BY_COUNTRY
Retrieve visa details for a specific country using country and currency codes, enabling accurate planning for international travel with up-to-date immigration data.
Instructions
Get visa information for a specific country.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
countryCode | Yes | ||
currencyCode | No |
Input Schema (JSON Schema)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"countryCode": {
"type": "string"
},
"currencyCode": {
"type": "string"
}
},
"required": [
"countryCode"
],
"type": "object"
}