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

Path Parameters

accountId
string<uuid>
required

Account ID

Response

Account details

Account information

accountId
string<uuid>
required

Account ID

Example:

"019bdb2a-960f-789d-8955-21720e6cdeed"

iban
string
required

Account IBAN

Example:

"LT647044001231465456"

partyId
string<uuid>
required

Party ID

Example:

"019bdb2a-960f-789d-8955-21720e6cdeee"

currency
string
required

Account currency

Example:

"EUR"

status
enum<string>
required

Account status

Available options:
OPENED,
CLOSED,
BLOCKED
createdAt
string<date-time>
required

Account creation timestamp

Example:

"2026-01-22T13:47:21Z"

availableBalance
number
required

Available balance

Example:

1000

currentLedgerAccount
string
required

Current ledger account identifier

Example:

"CUSTOMER:party-uuid:account-uuid:CURRENT"

holdingLedgerAccount
string
required

Holding ledger account identifier

Example:

"CUSTOMER:party-uuid:account-uuid:HOLDING"

openedAt
string<date-time> | null

Account opened timestamp

Example:

"2026-01-22T13:47:21Z"

blockedAt
string<date-time> | null

Account blocked timestamp

Example:

"2026-01-22T13:47:21Z"

closedAt
string<date-time> | null

Account closed timestamp

Example:

"2026-01-22T13:47:21Z"