get https://api.mercury.com/api/v1/accounts
Retrieve information about all your bank accounts
Response schema:
{
"accounts": [
{
"accountNumber": string,
"availableBalance": number,
"createdAt": date-time,
"currentBalance": number,
"id": string,
"kind": string,
"name": string,
"routingNumber": string,
"status": "active" | "deleted" | "pending" | "archived",
"type": "mercury" | "external" | "recipient",
"canReceiveTransactions": boolean | null, // Whether an account can receive transactions, based on the information from our partner bank
"nickname" : string | null,
"legalBusinessName": string
}
]
}