SWIFT · Example Payload

Swift Get Bic Details Example

Example of looking up BIC details for Deutsche Bank Frankfurt

BankingCross-Border PaymentsFinancial MessagingFinancial ServicesGPIISO 20022Payments

Swift Get Bic Details Example is an example object payload from SWIFT, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionrequestresponse

Example Payload

Raw ↑
{
  "summary": "Get BIC details",
  "description": "Example of looking up BIC details for Deutsche Bank Frankfurt",
  "request": {
    "method": "GET",
    "url": "https://api.swift.com/swiftrefdata/v2/bics/DEUTDEDB",
    "headers": {
      "Authorization": "Bearer your-oauth-access-token"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "bic": "DEUTDEDB",
      "institutionName": "DEUTSCHE BANK AG",
      "countryCode": "DE",
      "city": "FRANKFURT AM MAIN",
      "address": "TAUNUSANLAGE 12",
      "status": "ACTIVE",
      "connectedToBIC": true
    }
  }
}