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

Documentation Index

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

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

Path Parameters

accountId
string<uuid>
required

Account 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

Account details

Account information

accountId
string<uuid>

Account 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}
Example:

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

iban
string

Account IBAN

Example:

"LT647044001231465456"

partyId
string<uuid>

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}
Example:

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

status
enum<string>

Account status

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

Account creation timestamp

Example:

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

statusUpdatedAt
string<date-time>

Timestamp of the last status change

Example:

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

balances
object[]

Balances per currency

currentLedgerAccount
string

Current ledger account identifier

Example:

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

holdingLedgerAccount
string

Holding ledger account identifier

Example:

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

Last modified on February 10, 2026