Skip to main content
GET
/
developer
/
fee_external_account
Get the configured fee External Account
curl --request GET \
  --url https://api.bridge.xyz/v0/developer/fee_external_account \
  --header 'Api-Key: <api-key>'
{
"id": "fea_123",
"account_type": "us",
"currency": "usd",
"account_owner_name": "John Doe",
"bank_name": "Wells Fargo",
"last_4": "1111",
"active": true,
"beneficiary_address_valid": true,
"account": {
"last_4": "1111",
"routing_number": "121000248",
"checking_or_savings": "checking"
},
"created_at": "2020-01-01T00:00:00.000Z",
"updated_at": "2020-01-02T00:00:00.000Z"
}

Authorizations

Api-Key
string
header
required

Response

Get the configured fee External Account.

US ACH bank account using account and routing numbers

id
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42
account_owner_name
string
required

Owner of the account Bank Account (e.g. "John Doe"). For ach or wire transfers, this field must be at least 3 characters, at most 35 characters, and follow either of the following regex patterns:

  • ach: ^(?!\s*$)[\x20-\x7E]*$
  • wire: ^[ \w!"#$%&'()+,\-./:;<=>?@\\_`~]*$
Required string length: 1 - 256
account_type
enum<string>

Type of the bank account. The default is us

Available options:
us
currency
enum<string>

Currency associated with the bank account. Default is usd.

Available options:
usd,
eur,
mxn,
brl,
gbp
bank_name
string

Bank name of the account (e.g. "Chase")

Required string length: 1 - 256
last_4
string
deprecated

Last 4 digits of the bank account number for us account type. This field is getting deprecated in favor of the account.last_4 field

Minimum string length: 1
account_owner_type
enum<string>

The type of the account ownership. Required when the account_type is iban. For individual ownership, first_name and last_name are required. For business ownership, business_name is required.

Available options:
individual,
business
first_name
string

First name of the individual account holder. Required when the account_owner_type is individual

last_name
string

Last name of the individual account holder. Required when the account_owner_type is individual

business_name
string

Business name of the business account holder. Required when the account_owner_type is business

created_at
string<date-time>

Time of creation of the External Account

updated_at
string<date-time>

Time of last update of the External Account

active
boolean

Whether or not this External Account is active

beneficiary_address_valid
boolean

Whether the beneficiary address is valid. A valid beneficiary address is required for all US External Accounts