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.

ISA

An Individual Savings Account (ISA) used for tax-efficient investing in the UK market.

accountInformationAccountInformation

Account details such as available balance and interest rate.

companystring

Company where the financial product has been collected from. Examples: uk-demo, uk-natwest.

companyDisplayNamestring

Display name of the company for user-friendly presentation.

financialInformationProductFinancialInformation

Financial details of the product, like value, performance etc.

holderHolder

Information about the owner of the financial product.

List of holdings within the ISA.

idstring

Unique identifier for the financial product.

monthlySavingsAmountMonetaryAmount

Monthly savings amount associated with the financial product.

personalInformationobject

Details of the person collecting the data.

productNamestring

Name of the financial product.

productNumberstring

Number associated with the financial product.

transactionsArray<Transaction>

Transaction history for the last 12 months.

typestring

Type of the financial product.

Possible Enum values are ISA.
Example
{  "accountInformation": {    "cashAccountNumber": "12345678",    "cashValue": {      "amount": 4514.27,      "currency": "GBP"    },    "hasExclusiveOwnership": true,    "interestRate": 0.0025  },  "company": "uk-natwest",  "companyDisplayName": "NatWest",  "financialInformation": {    "currentValue": {      "amount": 26982.66,      "currency": "GBP"    },    "performanceSinceStart": 0.1605  },  "holder": {    "name": "Firstname Lastname"  },  "holdings": [    {      "acquisitionValue": {        "amount": 18883.51,        "currency": "GBP"      },      "feeVariable": 0,      "isin": "GB00B3X7QG63",      "name": "Vanguard FTSE Global All Cap Index Fund",      "quantity": 54.076858,      "type": "FUND",      "value": {        "amount": 22468.39,        "currency": "GBP"      }    }  ],  "id": "df2e7a28-d871-45c1-a01e-515b7aeaf7da",  "monthlySavingsAmount": {    "amount": 500,    "currency": "GBP"  },  "personalInformation": {},  "productName": "Stocks and Shares ISA",  "productNumber": "ISA-987654321",  "transactions": [    {      "amount": {        "amount": 500,        "currency": "GBP"      },      "description": "Monthly deposit",      "settlementDate": "2024-01-01",      "type": "DEPOSIT"    }  ],  "type": "ISA"}