Offer
The resource represents an offer search. This method returns a list of construction financing offers that correspond to the given financing terms query parameters.
GET /financing/construction/v2/offer/
Note The PAngBV (Preisangabenverordnung) requires that you need to provide the following data when displaying an offer: effective and nominal interest rates, monthly rate, remaining debt after fixed interest termination (Ablauf der Sollzinsbindung), number of repayment rates, duration until repayment is complete and the total amount paid. You may only use this API if you display all this data.
Request
Query Parameters
you have to provide either a geocode or postalcode:
- geocode - GeoCode of the search region
- postalcode - the usage of geocode is preferred, usage of postalcode leadsto bad quality of the search results
additional filter criteria:
PARAMETER |
DESCRIPTION |
financingtype |
financing type; default: "PROPERTY_PURCHASE" |
dditionalCosts |
additional costs; default: 0 |
ownfunds |
own funds of the buyer; default: 50000 |
purchaseprice |
purchase price of the project; default: 200000 |
remainingDebt |
the remaining debt (followup financing); default:100000 |
propertyValue |
the value of the property (followup financing) default:200000 |
amortizationrate |
amortization rate; default: 2 |
employment |
employment of the buyer; default: "EMPLOYED" |
fixednominalinterestrate |
fixed nominal interest rate; default: "TEN_YEARS" |
There are three possible financingTypes:
- PROPERTY_PURCHASE (Objektkauf)
- BUILDING_FINANCING (Neubau)
- FOLLOWUP_FINANCING (Anschlussfinanzierung)
If you search for followup financings, you need to provide remainingDebt and propertyValue instead of purchasePrice, additionalCosts and ownFunds.
Possible employments:
- CIVIL_SERVANT=Beamter
- EMPLOYED=Angestellt
- FREELANCER=Freiberufler
- PENSIONER=Rentner
- SELFEMPLOYED=Selbstständig
- UNEMPLOYED=Arbeitssuchend
Response
An offer allways contains a provider and its distance to the search location defined by the geoCode or the postalCode. If interest rates are found then the offer has an amortizationData object. This includes information like the remaining debt after the fixed interest rates termination, the number of monthly rates until the loan is repayed as well as the total repayment. The lastModified field contains the timestamp when the interest rates of the given provider were updated.
XML:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48 | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns3:offers xmlns:ns2="http://www.w3.org/1999/xlink" xmlns:ns3="http://rest.immobilienscout24.de/schema/financing/construction/1.0">
<offersFound>2</offersFound>
<offer>
<amortizationData>
<effectiveInterestRate>2.51</effectiveInterestRate>
<nominalInterestRate>2.18</nominalInterestRate>
<monthlyRate>399</monthlyRate>
<remainingDebt>143413</remainingDebt>
<totalAmountPaid>243005</totalAmountPaid>
<numberOfRates>255</numberOfRates>
<lastModified>1458031579000</lastModified>
</amortizationData>
<mortgageProvider id="111111" ns2:href="http://rest.immobilienscout24.de/restapi/api/financing/construction/v1.0/provider/111111">
<name>The financing partner</name>
<logo id="222222" ns2:href="http://rest.immobilienscout24.de/restapi/api/financing/construction/v1.0/providerlogo/222222">
<url>http://www.immobilienscout24.de/baufinanzierung/app/mortgageProvider/222222/1/logo.png</url>
</logo>
<numberOfRatings>500</numberOfRatings>
<averageRating>4.5</averageRating>
<contactAddressRequired>true</contactAddressRequired>
</mortgageProvider>
</offer>
<offer>
<amortizationData>
<effectiveInterestRate>3.51</effectiveInterestRate>
<nominalInterestRate>3.18</nominalInterestRate>
<monthlyRate>499</monthlyRate>
<remainingDebt>145413</remainingDebt>
<totalAmountPaid>253005</totalAmountPaid>
<numberOfRates>275</numberOfRates>
<lastModified>1458031579000</lastModified>
</amortizationData>
<mortgageProvider id="333333" ns2:href="http://rest.immobilienscout24.de/restapi/api/financing/construction/v1.0/provider/333333">
<name>The next financing partner</name>
<logo id="444444" ns2:href="http://rest.immobilienscout24.de/restapi/api/financing/construction/v1.0/providerlogo/444444">
<url>http://www.immobilienscout24.de/baufinanzierung/app/mortgageProvider/444444/1/logo.png</url>
</logo>
<numberOfRatings>900</numberOfRatings>
<averageRating>4.6</averageRating>
<contactAddressRequired>false</contactAddressRequired>
<brand>
<id>555555</id>
<name>The brand</name>
</brand>
</mortgageProvider>
</offer>
</ns3:offers>
|
JSON:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55 | {
"offersFound": 2,
"offer": [{
"amortizationData": {
"effectiveInterestRate": 2.51,
"nominalInterestRate": 2.18,
"monthlyRate": 399,
"remainingDebt": 143413,
"totalAmountPaid": 243005,
"numberOfRates": 255,
"lastModified": 1458031579000
},
"mortgageProvider": {
"id": 111111,
"href": "http://rest.immobilienscout24.de/restapi/api/financing/construction/v1.0/provider/111111",
"name": "The financing partner",
"logo": {
"id": 222222,
"xLink": "http://rest.immobilienscout24.de/restapi/api/financing/construction/v1.0/providerlogo/222222",
"url": "http://www.immobilienscout24.de/baufinanzierung/app/mortgageProvider/222222/1/logo.png"
},
"numberOfRatings": 500,
"averageRating": 4.5,
"contactAddressRequired": true
}
}, {
"amortizationData": {
"effectiveInterestRate": 3.51,
"nominalInterestRate": 3.18,
"monthlyRate": 499,
"remainingDebt": 145413,
"totalAmountPaid": 253005,
"numberOfRates": 275,
"lastModified": 1458031579000
},
"mortgageProvider": {
"id": 333333,
"href": "http://rest.immobilienscout24.de/restapi/api/financing/construction/v1.0/provider/333333",
"name": "The next financing partner",
"logo": {
"id": 444444,
"xLink": "http://rest.immobilienscout24.de/restapi/api/financing/construction/v1.0/providerlogo/444444",
"url": "http://www.immobilienscout24.de/baufinanzierung/app/mortgageProvider/444444/1/logo.png"
},
"numberOfRatings": 900,
"averageRating": 4.6,
"contactAddressRequired": false,
"brand": {
"id": 555555,
"name": "The brand"
}
}
}]
}
|