Skip to content

Mercury - Get Accounts

This module allows getting the list of Mercury bank accounts or the details of a specific account, including balances and bank data.

FieldTypeRequiredDescription
credentials_idcredentialYesMercury credentials
account_idstringNoSpecific account ID

This module requires Mercury type credentials with the following fields:

FieldDescription
api_keyMercury API Key (obtained in Settings > API)
{
"success": true,
"account": { ... },
"account_id": "abc123",
"name": "Operating Account",
"type": "checking",
"status": "active",
"current_balance": 50000.00,
"available_balance": 48500.00,
"routing_number": "123456789",
"account_number": "9876543210",
"message": "Cuenta Operating Account obtenida"
}
{
"success": true,
"accounts": [ ... ],
"total": 3,
"message": "3 cuentas encontradas"
}
  • checking: Main checking account
  • savings: Savings account
  • mercury-treasury: Treasury account (higher yield)
{
"credentials_id": "mercury_cuenta",
"account_id": "abc123"
}
  • Mercury provides FDIC-insured bank accounts
  • Each account has its own routing and account number
  • The available balance may be less than the current balance due to pending transfers
  • MercuryGetBalance - Get only account balances
  • MercuryCreateTransfer - Create transfers from an account
  • MercuryGetTransactions - View account transactions