Skip to content

Cadastre

POST cadastre

Returns cadastre information that matches the specified search criteria. Only available in BE and FR.

Request#

curl -X POST 'https://api.pricehubble.com/api/v1/cadastre' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer 74126eab0a9048d993bda4b1b55ae074' \
  -d '{
    "countryCode": "FR",
    "cadastreId": "75110000AL0022"
}'
curl -X POST 'https://api.pricehubble.com/api/v1/cadastre' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer 74126eab0a9048d993bda4b1b55ae074' \
  -d '{
    "countryCode": "FR",
    "cadastreCoordinates": {
        "latitude": 48.87,
        "longitude": 2.3
    }
}'

Request Fields#

Field Description Type Remarks
countryCode ISO country code string Currently available in BE and FR
cadastreCoordinates Request cadastre information for the plot located at coordinates Coordinates cadastreCoordinates or cadastreId is required
cadastreId Request cadastre information cadastre id string cadastreCoordinates or cadastreId is required
coordinates dossier coordinates Coordinates Required if dossierId is present

Response#

{
    "cadastreId": "75110000BB0156",
    "division": {
        "adminLevel": 9,
        "name": "Paris 11e Arrondissement",
        "officialId": "75111",
        "levelDesignation": "Arrondissement"
    },
    "landArea": 273.0,
    "plotId": "97",
    "section": "CR"
}

Response fields#

Field Description Type Remarks
cadastreId Official cadastre id string
division The administrative division information CadastreDivision
landArea Area of the plot in square meters float
plotId Official plot id string
section Official section string

CadastreDivision#

Field Description Type Remarks
adminLevel The administrative division level integer
name The name of the administrative division string The name is returned in the local language (e.g. "Genève" and not "Geneva" is returned)
officialId The official ID of the administrative division string
levelDesignation The administrative division level designation string The designation is returned in the local language (e.g. "Arrondissement" and not "District" is returned)