Skip to main content
GET
/
accounts
Get a list of accounts
curl --request GET \
  --url https://api.example.com/accounts
{
  "accounts": [
    {
      "accountId": "019bdb2a-960f-789d-8955-21720e6cdeed",
      "iban": "LT647044001231465456",
      "partyId": "019bdb2a-960f-789d-8955-21720e6cdeee",
      "currency": "EUR",
      "status": "OPENED",
      "createdAt": "2026-01-22T13:47:21.542163Z",
      "statusUpdatedAt": "2026-01-22T13:47:21.542163Z",
      "availableBalance": 1000,
      "currentLedgerAccount": "CUSTOMER:party-uuid:account-uuid:CURRENT",
      "holdingLedgerAccount": "CUSTOMER:party-uuid:account-uuid:HOLDING"
    }
  ]
}

Query Parameters

currentLedgerAccounts
string[] | null

Filter by current ledger account identifiers

partyId
string<uuid>

Filter by party ID

Pattern: [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}

Response

List of accounts

Collection of accounts

accounts
object[]
required

List of accounts

Last modified on February 10, 2026