Skip to main content
GET
/
accounts
/
{accountId}
Get account by ID
curl --request GET \
  --url https://api.fonder.com/accounts/{accountId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "accountNumber": "<string>",
  "description": "<string>",
  "type": "CASH",
  "bank": {
    "name": "<string>",
    "country": 123,
    "code": "<string>",
    "swiftCode": "<string>"
  },
  "bankCode": "<string>",
  "liquidityThreshold": "<string>",
  "lastBalance": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

accountId
string
required

Account ID or account name

Response

200 - application/json

Successful response

id
string
name
string
accountNumber
string
description
string
type
enum<string>
Available options:
CASH,
BANK
bank
object
bankCode
string
liquidityThreshold
string
lastBalance
string