GnistAI GnistAI
Log in

IBAN Validation

Validate International Bank Account Numbers — check digits, country, and BBAN extraction.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 type: validation enrichment type type validation enrichment validation enrichment lifecycle: maintained lifecycle lifecycle maintained maintained Finance

Data source: Algorithmic (ISO 13616)

REST Bridge Endpoint https://context.gnist.ai/rest/iban-validation/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (3)

validate_iban

Validate 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.

ParameterTypeRequiredDescription
ibanstringrequired
Request Body
{
  "iban": "example"
}
get_supported_countries

List all countries that support IBAN with their expected IBAN lengths.

Returns country codes, names, and the required IBAN length for each.

Request Body
{
  "query": "example"
}
report_feedback

Report 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'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
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"}'
Python
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())

Related Toolkits (Finance)

Resources