
Introduction
Get offers and quote for partner car insurance.
The content on this Developer Portal are provided as examples of "how to use" the APIs.
We strive to keep the examples up to date, but the APIs themselves represent the "truth".
For the technical details pleasy try out the actual APIs in the "swagger UI" browser client (in the API area) or via the Postman Collections.
Process

Get Products
A list of all partner car insurance products available for the Developer.
Request
GET /productsHost: https://preprod-api.almbrand.dkContent-Type: application/json
Accept-Language: da-DKAuthorization: Bearer {{access_token}}ocp-apim-subscription-key: {{subcription_key}}
Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"elements": [
{
"product_name": "insurance-car-leasing",
"title": "Bilforsikring (Leasing)",
"parameters": {...},
"features": {...},
"sub_features": {...}
},
{
"product_name": "insurance-car-finance",
"title": "Bilforsikring (Finansiering)"
"parameters": {...},
"features": {...},
"sub_features": {...}
},
{
"product_name": "insurance-car-standalone",
"title": "Bilforsikring (Enkeltstående)"
"parameters": {...},
"features": {...},
"sub_features": {...}
}
]
}