Skip to main content
GET
/
accounts
/
{accountId}
curl --location --request GET 'https://api.fonder.com/accounts/DEFAULT_ACCOUNT' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
  "id": "DEFAULT_ACCOUNT",
  "name": "DEFAULT",
  "accountNumber": "0000000000",
  "description": "DEFAULT BANK ACCOUNT",
  "type": "BANK",
  "bankCode": "00000",
  "liquidityThreshold": "0.00",
  "lastBalance": "25883572.0200"
}

Path Parameters

accountId
string
required
Account ID or account name

Response

id
string
Unique account identifier
name
string
Account name
accountNumber
string
Account number
description
string
Account description
type
string
Account type (CASH or BANK)
bankCode
string
Bank code
liquidityThreshold
string
Liquidity threshold amount
lastBalance
string
Last recorded balance
curl --location --request GET 'https://api.fonder.com/accounts/DEFAULT_ACCOUNT' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
  "id": "DEFAULT_ACCOUNT",
  "name": "DEFAULT",
  "accountNumber": "0000000000",
  "description": "DEFAULT BANK ACCOUNT",
  "type": "BANK",
  "bankCode": "00000",
  "liquidityThreshold": "0.00",
  "lastBalance": "25883572.0200"
}