curl --request POST \
--url https://api.fluximmo.io/v2/protected/analytics/market/tension/statistics \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"studiedData": [
{
"inseeCode": "75001",
"propertyClass": "CLASS_HOUSE",
"offerType": "OFFER_BUY"
}
]
}'
{
"data": [
{
"tension": {
"average": 50.5
},
"listings": {
"total": 100,
"lessThan30Days": {
"count": 20,
"rate": 40.5
},
"from30To60Days": {
"count": 20,
"rate": 40.5
},
"moreThan60Days": {
"count": 20,
"rate": 40.5
}
}
}
]
}
Obtain city tension statistics.
curl --request POST \
--url https://api.fluximmo.io/v2/protected/analytics/market/tension/statistics \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"studiedData": [
{
"inseeCode": "75001",
"propertyClass": "CLASS_HOUSE",
"offerType": "OFFER_BUY"
}
]
}'
{
"data": [
{
"tension": {
"average": 50.5
},
"listings": {
"total": 100,
"lessThan30Days": {
"count": 20,
"rate": 40.5
},
"from30To60Days": {
"count": 20,
"rate": 40.5
},
"moreThan60Days": {
"count": 20,
"rate": 40.5
}
}
}
]
}
The response is of type object
.
Was this page helpful?