Reference

API reference

Every endpoint is read-only, cursor-paginated and returns JSON. Authenticate with a bearer key on the Authorization header.

EndpointDescription
GET/v1/banksList institutions, filterable by country, type and regulator.
GET/v1/banks/{id}Full profile for a single institution.
GET/v1/bic/{code}Resolve a BIC/SWIFT code to an institution.
GET/v1/branchesBranch records with addresses and clearing codes.
GET/v1/regulatorsSupervisory authorities per jurisdiction.
GET/v1/countriesCoverage summary and local code schemes.
curl https://api.banking.rest/v1/bic/DEUTDEFF \
  -H "Authorization: Bearer sk_live_…"

{
  "bic": "DEUTDEFF",
  "institution": {
    "id": "de_deutsche_bank",
    "name": "Deutsche Bank AG",
    "country": "DE",
    "type": "universal_bank",
    "regulator": "BaFin",
    "lei": "7LTWFZYICNSX8D621K86"
  },
  "branch": null,
  "verified_at": "2026-08-14"
}