GnistAI GnistAI
Log in

SWIFT/BIC Lookup

SWIFT/BIC code lookup — identify banks by SWIFT code, search by name, filter by country.

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

Data source: Curated dataset (ISO 9362, public records)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/swift-bic/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-swift-bic": {
      "url": "https://context.gnist.ai/mcp/swift-bic/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/swift-bic/" \
  -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": "lookup_swift_code", "arguments": {"swift_code": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/swift-bic/

4 endpoints available:

Shell
curl "https://context.gnist.ai/rest/swift-bic/lookup_swift_code?swift_code=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

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

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc swift-bic

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

Install
pip install gnistai

Available Tools (4)

lookup_swift_code
Look up a bank by its SWIFT/BIC code.
ParameterTypeRequiredDescription
swift_codestringrequired8 or 11 character SWIFT/BIC code (e.g. CHASUS33, DEUTDEFF).
search_swift_banks
Search the SWIFT/BIC code database.
ParameterTypeRequiredDescription
querystringrequiredSearch by bank name, city, or SWIFT code.
limitintegeroptionalMaximum results to return. (default: 20)
list_banks_by_country
List banks by country code from the SWIFT/BIC database.
ParameterTypeRequiredDescription
country_codestringrequiredISO 3166-1 alpha-2 country code (e.g. US, GB, DE, JP).
limitintegeroptionalMaximum results to return. (default: 50)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related