Get Pricing
Get insurance pricing for a given variant and params. List of variants and required parameters available in the section below.
Request body
variant
stringInsurance variant.
parameters
arrayParameters required to calculate the insurance price.
name
stringName of the parameter.
value
stringValue of the parameter.
Returns
full
stringFull insurance price.
curl --location --request POST 'https://api-test.simpl.rent/v2/insurance-pricing' \
--header 'Authorization: <API key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"variant": "tenant_insurance_basic",
"parameters": [
{
"name": "liability_sum",
"value": "100000"
}
]
}'
Issue Insurance
Issue insurance for a given variant. Please refer to the section for available variants and required parameters.
Request body
variant
stringRequiredInsurance variant.
entities
arrayRequiredList of insurance entities.
type
stringRequiredType of an entity on insurance (insured | policyholder | insured_and_policyholder).
name
stringOptionalName of the entity. Required if the entity is a person.
surname
stringOptionalSurname of the entity. Required if the entity is a person.
peselNumber
stringOptionalPESEL number of the entity. Required if the entity is a person and Polish citizen.
citizenship
stringOptionalCitizenship of the entity. Required if the entity is not a Polish citizen and does not have a PESEL number.
birthDate
stringOptionalBirth date of the entity. Required if the entity is not a Polish citizen and does not have a PESEL number.
regonNumber
stringOptionalREGON number of the entity. Required if the entity is a company.
companyName
stringOptionalName of the company. Required if the entity is a company.
address
objectRequiredAddress of the entity.
postalCode
stringRequiredcity
stringRequiredstreet
stringRequiredhouseNumber
stringRequiredflatNumber
stringOptionalparameters
arrayRequiredList of parameters required for the specific insurance variant (see section below).
name
stringRequiredvalue
stringRequiredReturns
policyNumber
stringPolicy number.
curl --location --request POST 'https://api-test.simpl.rent/v2/issue-insurance' \
--header 'Authorization: <API key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"variant": "tenant_insurance_basic",
"entities": [
{
"type": "insured",
"name": "John",
"surname": "Doe",
"peselNumber": "12345678901",
"address": {
"city": "Warszwa",
"street": "Krucza",
"houseNumber": "1",
"flatNumber": "1",
"postalCode": "00-000"
}
},
{
"type": "policyholder",
"companyName": "Company Name",
"regonNumber": "1234567890",
"address": {
"city": "Warszwa",
"street": "Piwna",
"houseNumber": "1",
"flatNumber": "1",
"postalCode": "00-000"
}
}
],
"parameters": [
{
"name": "start_date",
"value": "2025-01-01"
},
{
"name": "liability_sum",
"value": "100000"
},
]
}'
Cancel Insurance
Insurance cancellation.
Request body
policyNumber
stringRequiredPolicy number.
cancelAt
stringRequiredDate (YYYY-MM-DD) at which insurance should be cancelled.
curl --location --request POST 'https://api-test.simpl.rent/v2/cancel-insurance' \
--header 'Authorization: <API key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"policyNumber": "TXS00000001",
"cancelAt": "2025-01-01"
}'
Insurance Variants
Tenant Insurance
tenant_insurance_basic
start_date
stringStart date of the insurance (YYYY-MM-DD).
liability_sum
stringLiability sum value. Required for pricing calculation.
Landlord Insurance
landlord_insurance
start_date
stringStart date of the insurance (YYYY-MM-DD).
rent_contract_start_date
stringStart date of the rent contract (YYYY-MM-DD).
rent_contract_end_date
stringEnd date of the rent contract (YYYY-MM-DD) (optional if indefinite lease).
rent_sum
stringRent sum.
rent_protection_sum
stringRent guarantee sum (max 3x rent sum or 24000 PLN / min 6000 PLN). Required for pricing calculation.
property_city
stringCity of the insured property.
property_street
stringStreet of the insured property.
property_house_number
stringHouse number of the insured property.
property_flat_number
stringFlat number of the insured property.
property_postal_code
stringPostal code of the insured property.
cancel_at
stringOptionalDate (YYYY-MM-DD) at which insurance should be cancelled.