Financial Product Type

This is a preview version of the API intended for early testing and integration. Preview versions are not stable and may include breaking changes before general availability.

PSD2 Savings Account

A PSD2 savings account

accountHolderNamestring

Name of the account holder

accountIdstring

Account identifier

accountNamestring

Name of the account

accountNumberstring

The account number assigned by the source financial institution. This is the most stable identifier for the account over time and across collections, and is suitable for matching the same account between repeated collections. Note that stability is best-effort and depends on what the institution exposes; it may occasionally change if the institution restructures or reissues the account, and the value may be masked or partially redacted (e.g., as a masked PAN for credit cards), which can cause collisions between accounts sharing the same visible digits.

availableBalanceMonetaryAmount

Available balance of the account

bicstring

Bank Identifier Code

bookedBalanceMonetaryAmount

Booked balance of the account

companystring

Company where the financial product has been collected from. Examples: se-folksam, se-lansforsakringar, se-avanza, se-movestic, se-spp, se-nordea, se-amf, se-seb, se-alecta, se-nordnet, se-handelsbanken, se-futur, se-swedbank, se-skandia, se-ica-bank, se-danske-bank.

companyDisplayNamestring

Display name of the company for user-friendly presentation.

currencystring

Currency code of the account

ibanstring

International Bank Account Number

idstring

Insurely-generated unique identifier for this collection of the financial product. Randomly generated and not stable across collections — a new id is issued each time the product is collected, even for the same underlying account. Use this only as a handle within a single collection (e.g., to correlate holdings and transactions). Do not use it to recognize the same product over time; use the stable institution-assigned identifier on this product (e.g., productNumber, accountNumber, or loanId) for that.

personalInformationPersonalInformation

Personal information about the person who initiated the data collection.

List of transactions on the account

typestring

Type of the financial product.

Possible Enum values are KF, ISK, CUSTODY_ACCOUNT, UNKNOWN_INVESTMENT_TYPE, IPS_PENSION, PRIVATE_PENSION, OCCUPATIONAL_PENSION, COLLECTIVE_OCCUPATIONAL_PENSION, UNKNOWN_PENSION_TYPE, MORTGAGE_LOAN, UNSECURED_LOAN, GENERAL_SAVINGS_ACCOUNT, GENERAL_SAVINGS_ACCOUNT_FIXED_PERIOD, PSD2_SAVINGS_ACCOUNT, PSD2_CHECKING_ACCOUNT or PSD2_CREDIT_CARD.
Example
{  "accountHolderName": "Anna Svensson",  "accountId": "acc-123",  "accountName": "Sparkonto",  "accountNumber": "1234567890",  "availableBalance": {    "amount": 25000,    "currency": "SEK"  },  "bic": "NDEASESS",  "bookedBalance": {    "amount": 25000,    "currency": "SEK"  },  "company": "se-nordea-psd2",  "companyDisplayName": "Nordea",  "currency": "SEK",  "iban": "SE3550000000054910000003",  "id": "psd2-sav-123",  "transactions": [    {      "accountId": "acc-123",      "amount": {        "amount": 1000,        "currency": "SEK"      },      "bookingDate": "2024-01-15",      "counterpartyName": "Insurely AB",      "createdAt": "2024-01-15T10:30:00Z",      "description": "Lön",      "direction": "CREDIT",      "status": "BOOKED",      "transactionId": "tx-1"    }  ],  "type": "PSD2_SAVINGS_ACCOUNT"}