SEPA

European bank transfer standard. Used for pay-out across the eurozone.

SEPA (Single Euro Payments Area) is the European standard for bank transfers in euros. It covers 36 countries including the EU, Switzerland, Norway, and Iceland. Use it as a destination for payouts to European bank accounts.

Countries: Eurozone + SEPA area | Currency: EUR | Direction: Pay-out

Required fields

Field
Type
Description

type

string

Must be "SEPA"

currency

string

Must be "EUR"

sepa.iban

string

Recipient's IBAN

sepa.customer.firstName

string

Recipient's first name

sepa.customer.lastName

string

Recipient's last name

sepa.customer.email

string

Recipient's email

sepa.customer.documentNumber

string

National ID or tax number

sepa.customer.documentType

string

Document type

sepa.bic

string

BIC/SWIFT code of the bank

Example

{
  "type": "SEPA",
  "currency": "EUR",
  "sepa": {
    "iban": "DE89370400440532013000",
    "bic": "COBADEFFXXX",
    "customer": {
      "firstName": "Hans",
      "lastName": "Müller",
      "email": "[email protected]",
      "documentType": "DNI",
      "documentNumber": "X1234567A"
    }
  }
}

Schema

The sepa object

Attributes
ibanstringRequired

Recipient's IBAN.

bicstringOptional

BIC/SWIFT code of the recipient's bank.

The sepa object

Last updated