Skip to main content
GET
/
v1
/
accounts
List accounts
curl --request GET \
  --url https://api.waycore.com/v1/accounts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "connectionId": "<string>",
      "type": "checking",
      "currency": "<string>",
      "name": "<string>",
      "status": "open",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "officialName": "<string>",
      "maskedNumber": "<string>",
      "accountNumber": "<string>",
      "routingNumber": "<string>",
      "swiftBic": "<string>",
      "currentBalance": "<string>",
      "availableBalance": "<string>",
      "balanceAsOf": "2023-11-07T05:31:56Z",
      "metadata": {}
    }
  ],
  "pagination": {
    "hasMore": true,
    "nextCursor": "<string>"
  },
  "meta": {
    "requestId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

OAuth 2.0 Client Credentials issuing JWT Bearer access tokens.

Query Parameters

cursor
string | null

Pagination cursor from a previous response.

limit
integer
default:100

Maximum number of items to return.

Required range: 1 <= x <= 500
fields
string | null

Comma-separated sparse fieldset. The server always includes required identifiers.

connectionId
string | null

Filter by parent connection identifier.

type
enum<string> | null

Filter by account type.

Available options:
checking,
savings,
creditCard,
loan,
investment,
wallet,
other,
unknown
currency
string | null

Filter by account currency.

Pattern: ^[A-Z0-9]{3,12}$
status
enum<string> | null

Filter by account status.

Available options:
open,
closed,
unknown

Response

Successful Response

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