Skip to main content
GET
/
wallet-infra
/
bank-accounts
List bank accounts
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.prudra.dev/wallet-infra/bank-accounts', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
[
  {
    "id": "bac_abc123",
    "accountName": "Vendlyst Ltd — Operations",
    "currency": "GBP",
    "isActive": true,
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.prudra.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your Prudra API key. Get one at dashboard.prudra.com/settings/api-keys

Response

200 - application/json

Bank accounts

id
string
required
Example:

"bac_abc123"

accountName
string
required
Example:

"Vendlyst Ltd — Operations"

currency
string
required
Example:

"GBP"

isActive
boolean
required
createdAt
string<date-time>