SWIFT/BIC Lookup
Validate a SWIFT/BIC code and look up its bank, branch, country, city, and address.
Documentation
SWIFT/BIC Lookup
Validate a SWIFT/BIC code and look up its bank, branch, country, city, and address.
Endpoint
POST /v1/swift-bic-query
Authentication
Use a ToolKK OpenAPI AppKey. APILayer credentials stay on the ToolKK provider gateway.
Billing
A successful call costs 20 coins.
Errors
Invalid input, quota exhaustion, authentication faults, and temporary provider failures return normalized error codes and messages.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"swift_code": "COBADEFF574"
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"valid": true,
"swift": "COBADEFF574",
"bank_name": "COMMERZBANK AG",
"country": "Germany",
"city": "ANDERNACH"
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| swift_code | string | COBADEFF574 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | SUCCESS |
| message | string | success |
| data | object | {...} |
| data.valid | boolean | true |
| data.swift | string | COBADEFF574 |
| data.bank_name | string | COMMERZBANK AG |
| data.country | string | Germany |