curl --request POST \
--url https://api.fluximmo.io/v2/protected/analytics/market/price_per_area/statistics \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"studiedData": [
{
"inseeCode": "75001",
"propertyClass": "CLASS_HOUSE",
"offerType": "OFFER_BUY"
}
]
}
'{
"data": [
{
"average": 250000,
"median": 240000,
"limits": {
"upperBound": 500000,
"lowerBound": 100000,
"count": 50
},
"confidence": {
"upperBound": 550000,
"lowerBound": 90000,
"count": 40
}
}
]
}Obtain city’s live prices per area statistics.
curl --request POST \
--url https://api.fluximmo.io/v2/protected/analytics/market/price_per_area/statistics \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"studiedData": [
{
"inseeCode": "75001",
"propertyClass": "CLASS_HOUSE",
"offerType": "OFFER_BUY"
}
]
}
'{
"data": [
{
"average": 250000,
"median": 240000,
"limits": {
"upperBound": 500000,
"lowerBound": 100000,
"count": 50
},
"confidence": {
"upperBound": 550000,
"lowerBound": 90000,
"count": 40
}
}
]
}Array of studied data items
Show child attributes
INSEE code of the location
"75001"
Class of the property
CLASS_UNKNOWN, CLASS_HOUSE, CLASS_FLAT, CLASS_PROGRAM, CLASS_SHOP, CLASS_PREMISES, CLASS_OFFICE, CLASS_LAND, CLASS_BUILDING, CLASS_PARKING "CLASS_HOUSE"
Type of offer for the property
OFFER_UNKNOWN, OFFER_BUY, OFFER_RENT, OFFER_BUSINESS_TAKE_OVER, OFFER_LEASE_BACK, OFFER_LIFE_ANNUITY_SALE, OFFER_HOLIDAYS "OFFER_BUY"
Array of data items in the response
Show child attributes
Average value for the data
250000
Median value for the data
240000
Confidence interval data for the item
Was this page helpful?