POST
/
v2
/
city
/
market
/
_statistics
curl --request POST \
  --url https://api.f6o.co/v2/city/market/_statistics \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "inseeCodes": [
    "<string>"
  ]
}'
{
  "apiVersion": "<string>",
  "kind": "<string>",
  "context": "<string>",
  "internalDelay": 123,
  "data": [
    {
      "tension": {
        "houses": {
          "average": 123
        },
        "apartments": {
          "average": 123
        }
      },
      "listings": {
        "houses": {
          "total": 123,
          "lessThan30Days": {
            "count": 123,
            "rate": 123
          },
          "from30To60Days": {
            "count": 123,
            "rate": 123
          },
          "moreThan60Days": {
            "count": 123,
            "rate": 123
          }
        },
        "apartments": {
          "total": 123,
          "lessThan30Days": {
            "count": 123,
            "rate": 123
          },
          "from30To60Days": {
            "count": 123,
            "rate": 123
          },
          "moreThan60Days": {
            "count": 123,
            "rate": 123
          }
        }
      }
    }
  ]
}

Authorizations

x-api-key
string
header
required

API Key used to be authentified to these APIs. Please contact Fluximmo to get one

Body

application/json
inseeCodes
string[]

Response

200
application/json
A successful response.
apiVersion
string
kind
string
context
string
internalDelay
integer
data
object[]

Was this page helpful?