Routes
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.
Get the supported products per company
GEThttps://api.insurely.com/companies/supported-products
Lists each company configured for the calling client, along with the wealth product types that company supports for this client. Each product type carries a collectionSupported flag (the company offers this product type) and a confirmedAtCompany flag (confirmed in production).
Request
Header Parameters
Insurely-Versionstring
Specifies the API version to use. Must match the version of the endpoint you are targeting.
Possible Enum values are
2025-01-01.Responses
cURL
curl https://api.insurely.com/companies/supported-products \
-H "authorization-token: <authorization-token>"RESPONSE 200
{
"companies": [
{
"company": "uk-hargreaves-lansdown",
"wealthProductTypes": [
{
"collectionSupported": true,
"confirmedAtCompany": true,
"productType": "ISA"
}
]
}
]
}