Bank Accounts

Accounts that will receive payouts.

What is a bank account?

A bank account represents the recipient information to which BlindPay needs to send the fiat payment when a payout is started.

You can add multiple bank accounts for each receiver.

Payment rails

Here are the payment rails that BlindPay supports:

TypeCountryEstimated time of arrival
international_swift🌎 Global~5 business days
achπŸ‡ΊπŸ‡Έ United States~2 business days
wireπŸ‡ΊπŸ‡Έ United States~1 business day
pixπŸ‡§πŸ‡· Brazil~5 minutes
spei_bitsoπŸ‡²πŸ‡½ Mexico~5 minutes
ach_cop_bitsoπŸ‡¨πŸ‡΄ Colombia~1 business day
transfers_bitsoπŸ‡¦πŸ‡· Argentina~5 minutes

Adding a bank account

All data required to create a bank account should be valid, even for development instances.

Before creating a bank account, you need to:

  1. Create an account on BlindPay
  2. Create a development instance
  3. Create your API key
  4. Create a receiver
🌎 International Swift
πŸ‡ΊπŸ‡Έ ACH
πŸ‡ΊπŸ‡Έ Domestic Wire
πŸ‡§πŸ‡· Pix
πŸ‡²πŸ‡½ SPEI
πŸ‡¨πŸ‡΄ ACH COP
πŸ‡¦πŸ‡· Transfers 3.0
curl --request POST \
  --url https://api.blindpay.com/v1/instances/in_000000000000/receivers/re_000000000000/bank-accounts \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "international_swift",
  "name": "Display Name",
  "swift_code_bic": "<Replace this>",
  "swift_account_holder_name": "<Replace this>",
  "swift_account_number_iban": "<Replace this>",
  "swift_beneficiary_address_line_1": "<Replace this>",
  "swift_beneficiary_address_line_2": "<Replace this>",
  "swift_beneficiary_country": "<Replace this>",
  "swift_beneficiary_city": "<Replace this>",
  "swift_beneficiary_state_province_region": "<Replace this>",
  "swift_beneficiary_postal_code": "<Replace this>",
  "swift_bank_name": "<Replace this>",
  "swift_bank_address_line_1": "<Replace this>",
  "swift_bank_address_line_2": "<Replace this>",
  "swift_bank_country": "<Replace this>",
  "swift_bank_city": "<Replace this>",
  "swift_bank_state_province_region": "<Replace this>",
  "swift_bank_postal_code": "<Replace this>",
  "swift_intermediary_bank_swift_code_bic": "<Replace this>",
  "swift_intermediary_bank_account_number_iban": "<Replace this>",
  "swift_intermediary_bank_name": "<Replace this>",
  "swift_intermediary_bank_country": "<Replace this>"
}'