GnistAI GnistAI
Log in

IBAN Validation

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

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 Finance

Data source: Algorithmic (ISO 13616)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/iban-validation/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-iban-validation": {
      "url": "https://context.gnist.ai/mcp/iban-validation/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/iban-validation/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "validate_iban", "arguments": {"iban": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/iban-validation/

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/iban-validation/validate_iban?iban=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/iban-validation/validate_iban",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "iban": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc iban-validation

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (3)

validate_iban
Validate an International Bank Account Number (IBAN).
ParameterTypeRequiredDescription
ibanstringrequired
get_supported_countries
List all countries that support IBAN with their expected IBAN lengths.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related