Routes

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

Successful request.

Body

cURL
curl https://api.insurely.com/companies/supported-products \
  -H "authorization-token: <authorization-token>"
RESPONSE 200
{
  "companies": [
    {
      "company": "se-avanza",
      "wealthProductTypes": [
        {
          "collectionSupported": true,
          "confirmedAtCompany": true,
          "productType": "ISK"
        },
        {
          "collectionSupported": true,
          "confirmedAtCompany": true,
          "productType": "KF"
        }
      ]
    }
  ]
}