Skip to main content
GET
/
accounts
Get all accounts
curl --request GET \
  --url https://api.fonder.com/accounts \
  --header 'Authorization: Bearer <token>'
{
  "total": 123,
  "page": 123,
  "limit": 123,
  "totalPages": 123,
  "hasNext": true,
  "hasPrevious": true,
  "data": [
    {
      "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.

Query Parameters

page
integer
default:1

Page number

limit
integer
default:10

Number of items per page

type
enum<string>

Account type filter

Available options:
CASH,
BANK
bank
string

Bank code filter

Response

200 - application/json

Successful response

total
number
page
number
limit
number
totalPages
number
hasNext
boolean
hasPrevious
boolean
data
object[]