Skip to main content
To access EUR and the SEPA payment rail, please reach out to our team at sales@bridge.xyz

🇪🇺 What we support

Logistics

  • Onramps: 1PP & 3PP onramps supported. For 3PP deposits from individuals, please contact your account manager
  • Offramps: 1PP & 3PP onramps & offramps supported to both individuals and businesses.
  • Support SEPA payments to & from IBANs issued in countries and territories: Aland Islands, Albania, Andorra, Austria, Azores, Belgium, Bulgaria, Canary Islands, Ceuta, Croatia, Cyprus, Czech Republic, Denmark, Estonia, Finland, France, French Guiana, Germany, Gibraltar, Greece, Guadeloupe, Guernsey, Hungary, Iceland, Ireland, Isle of Man, Italy, Jersey, Latvia, Liechtenstein, Lithuania, Luxembourg, Madeira, Malta, Martinique, Mayotte, Melilla, Moldova, Monaco, Montenegro, Netherlands, North Macedonia, Norway, Poland, Portugal, Reunion, Romania, Saint Barthélemy, Saint Martin (French part), Saint Pierre and Miquelon, San Marino, Serbia, Slovakia, Slovenia, Spain, Sweden, Switzerland, United Kingdom, Vatican City.

Request / Response Examples

Request
curl --request POST \
  --url https://api.bridge.xyz/v0/customers/#{request.customer_id}/external_accounts \
  --header 'Api-Key: #{api_key}' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: 011235' \
  --data '
{
  "currency": "eur",
  "bank_name": "Deutsche Bank",
  "account_owner_name": "Ada Lovelace",
  "first_name": "Ada",
  "last_name": "Lovelace",
  "account_owner_type": "individual",
  "account_type": "iban",
  "iban": {
    "account_number": "DE89370400440532013000",
    "bic": "DEUTDEDBFRA",
    "country": "DEU"
  },
  "address": {
    "street_line_1": "Taunusanlage 12",
    "city": "Frankfurt",
    "postal_code": "60325",
    "country": "DEU"
  }
}'