Properties Analytics
- Basic
Market Analytics
- Price Per Area
- Tension
GetMarketLiveStatistics - Obtain city's tension and listing statistics.
POST
/
v2
/
market
/
_statistics
Copy
curl --request POST \
--url https://api.f6o.co/v2/market/_statistics \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"studiedData": [
{
"inseeCode": "<string>",
"propertyClass": "CLASS_UNKNOWN",
"offerType": "OFFER_UNKNOWN"
}
]
}'
Copy
{
"apiVersion": "<string>",
"kind": "<string>",
"context": "<string>",
"internalDelay": 123,
"data": [
{
"tension": {
"average": 123
},
"listings": {
"total": 123,
"lessThan30Days": {
"count": 123,
"rate": 123
},
"from30To60Days": {
"count": 123,
"rate": 123
},
"moreThan60Days": {
"count": 123,
"rate": 123
}
}
}
]
}
Authorizations
API Key used to be authentified to these APIs. Please contact Fluximmo to get one
Body
application/json
Response
200
application/json
A successful response.
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://api.f6o.co/v2/market/_statistics \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"studiedData": [
{
"inseeCode": "<string>",
"propertyClass": "CLASS_UNKNOWN",
"offerType": "OFFER_UNKNOWN"
}
]
}'
Copy
{
"apiVersion": "<string>",
"kind": "<string>",
"context": "<string>",
"internalDelay": 123,
"data": [
{
"tension": {
"average": 123
},
"listings": {
"total": 123,
"lessThan30Days": {
"count": 123,
"rate": 123
},
"from30To60Days": {
"count": 123,
"rate": 123
},
"moreThan60Days": {
"count": 123,
"rate": 123
}
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.