SWIFT · Example Payload

Swift Validate Iban Example

Example of validating a German IBAN using the SWIFT SwiftRef API

BankingCross-Border PaymentsFinancial MessagingFinancial ServicesGPIISO 20022Payments

Swift Validate Iban 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": "Validate an IBAN",
  "description": "Example of validating a German IBAN using the SWIFT SwiftRef API",
  "request": {
    "method": "GET",
    "url": "https://api.swift.com/swiftrefdata/v2/ibans/DE89370400440532013000/validity",
    "headers": {
      "Authorization": "Bearer your-oauth-access-token"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "valid": true,
      "errorCode": null,
      "errorDescription": null
    }
  }
}