Data source: Algorithmic (ISO 13616)
https://context.gnist.ai/rest/iban-validation/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (3)
validate_ibanValidate an International Bank Account Number (IBAN).
Checks format, country code, length, and ISO 7064 Mod 97-10 check digits.
Returns validation result with country, BBAN, and formatted IBAN if valid.
Args:
iban: The IBAN to validate. Spaces are allowed and will be stripped.
| Parameter | Type | Required | Description |
|---|---|---|---|
iban | string | required |
{
"iban": "example"
}get_supported_countriesList all countries that support IBAN with their expected IBAN lengths.
Returns country codes, names, and the required IBAN length for each.
{
"query": "example"
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"feedback": "example"
}Quick Start
curl -X POST "https://context.gnist.ai/rest/iban-validation/validate_iban" \
-H "Content-Type: application/json" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"iban": "example"}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/rest/iban-validation/validate_iban",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
json={
"iban": "example"
},
)
print(resp.json())