Mercury - Get Accounts
Description
Section titled “Description”This module allows getting the list of Mercury bank accounts or the details of a specific account, including balances and bank data.
Configuration
Section titled “Configuration”| Field | Type | Required | Description |
|---|---|---|---|
| credentials_id | credential | Yes | Mercury credentials |
| account_id | string | No | Specific account ID |
Credentials
Section titled “Credentials”This module requires Mercury type credentials with the following fields:
| Field | Description |
|---|---|
api_key | Mercury API Key (obtained in Settings > API) |
Output
Section titled “Output”Specific account
Section titled “Specific account”{ "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"}All accounts
Section titled “All accounts”{ "success": true, "accounts": [ ... ], "total": 3, "message": "3 cuentas encontradas"}Account Types
Section titled “Account Types”- checking: Main checking account
- savings: Savings account
- mercury-treasury: Treasury account (higher yield)
Usage Example
Section titled “Usage Example”{ "credentials_id": "mercury_cuenta", "account_id": "abc123"}API Used
Section titled “API Used”- API: Mercury API v1
- Endpoint:
GET /api/v1/accounts,GET /api/v1/account/{id} - Documentation: https://docs.mercury.com/reference
- 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
Related Nodes
Section titled “Related Nodes”- MercuryGetBalance - Get only account balances
- MercuryCreateTransfer - Create transfers from an account
- MercuryGetTransactions - View account transactions