Skip to main content
GET
/
v1
/
balances
List Balances
curl --request GET \
  --url https://api.waycore.com/v1/balances \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "connectionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "entityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "date": "2023-12-25",
      "currency": "<string>",
      "ledgerBalance": "<string>",
      "postedTransactionDelta": "<string>",
      "source": "bankProvided",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "hasMore": true,
    "nextCursor": "<string>"
  },
  "meta": {
    "requestId": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.waycore.com/llms.txt

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

Authorizations

Authorization
string
header
required

Opaque API key passed as Authorization: Bearer <key>. Keys are organization-bound, environment-bound (live or test), scope-carrying, and expiring. Create and manage keys via the console.

Query Parameters

cursor
string | null

Opaque pagination cursor from a previous /v1/balances response. Cursors are valid only for the same query filters.

limit
integer
default:100

Maximum number of items to return.

Required range: 1 <= x <= 500
dateGte
string<date> | null

Return balances with date greater than or equal to this date.

dateLt
string<date> | null

Return balances with date earlier than this date.

accountId
string<uuid> | null

Filter by account identifier.

connectionId
string<uuid> | null

Filter by parent connection identifier.

entityId
string<uuid> | null

Filter by entity identifier.

Response

Successful Response

data
AccountBalance · object[]
required
pagination
Pagination · object
required
meta
Meta · object
required