Skip to content

Full Property Check (NSPD + Rosreestr + FSSP)

Comprehensive real estate property check by cadastral number across three sources: NSPD (National Spatial Data System), the Rosreestr reference service (USRR), and FSSP. Returns a summary of encumbrances, cadastral value, ownership data, property attributes, and GeoJSON geometry.

URL

Method: POST

  • Production: https://registry.wallet.kvell.group/reg2/cadastral/full

Request parameters

Name Data type Required Description
cadastral_number string Yes Cadastral number of the property in NN:NN:NNNNNNN:NNN format
include_raw boolean No Include raw data from the sources in the response
owner_last_name string No Owner's last name — required for the FSSP check
owner_first_name string No Owner's first name — required for the FSSP check

Request example

{
  "cadastral_number": "66:62:0301001:672",
  "include_raw": true
}

Request headers

Name Data type Required Description
X-Api-Key string Yes Unique identifier (UUID)

Response

Response example

{
  "cadastral_number": "50:26:0100209:1409",
  "summary": {
    "has_encumbrances": false,
    "has_active_fssp": null,
    "sources": {
      "nspd": "checked",
      "rosreestr_sprav": "error",
      "fssp": "skipped"
    },
    "note": "has_encumbrances=null — none of the sources returned data. has_encumbrances=false — checked, no encumbrances found. FSSP: use POST /cadastral/full with the owner's full name."
  },
  "nspd": {
    "cadastral_number": "50:26:0100209:1409",
    "area_type": 1,
    "address": "Российская Федерация, Московская область, г.о. Наро-Фоминский, г Наро-Фоминск, ул Новикова, д. 20, кв. 107",
    "status": "Учтенный",
    "object_type": "Помещение",
    "category": "Жилое",
    "permitted_use": null,
    "area": {
      "value": 88.1,
      "unit": "кв.м"
    },
    "cadastral_cost": {
      "value": 7278426.43,
      "per_sqm": 82615.51,
      "date": null
    },
    "cadastral_registration_date": "2018-07-26",
    "building": {
      "floors": 18,
      "floor_number": 4,
      "underground_floors": 1,
      "wall_material": "Каменные",
      "built_year": 2018,
      "name": "17-этажный 3-х секционный жилой дом с встроенными помещениями общественного назначения, встроенным детским садом и подземной автостоянкой (1 очередь строительства: 1 и 2 секции с встроенными помещениями общественного назначения и подземной автостоянкой)",
      "purpose": "Многоквартирный дом",
      "parent_cad_number": "50:26:0100209:1302"
    },
    "encumbrances": {
      "has_encumbrances": false,
      "list": []
    },
    "rights": [],
    "location": {
      "center_lat": 55.3871385,
      "center_lon": 36.7185534
    },
    "geojson": {
      "type": "Feature",
      "geometry": {
        "bbox": null,
        "type": "Point",
        "coordinates": [
          36.718553406711294,
          55.387138488155664
        ]
      },
      "properties": {
        "cadastral_number": "50:26:0100209:1409"
      }
    },
    "error": null
  },
  "rosreestr_sprav": {
    "cadastral_number": "50:26:0100209:1409",
    "status": null,
    "obj_type": null,
    "area": null,
    "address": null,
    "address_parts": null,
    "reg_date": null,
    "cancel_date": null,
    "info_update_date": null,
    "cadastral_cost": null,
    "floor": null,
    "purpose": null,
    "wall_material": null,
    "build_year": null,
    "commissioning_year": null,
    "land_category": null,
    "permitted_use": null,
    "permitted_use_by_doc": null,
    "cad_engineer": null,
    "has_encumbrances": false,
    "encumbrances_count": null,
    "encumbrances": [],
    "rights_count": null,
    "rights": [],
    "old_numbers": null,
    "parent_cad_number": null,
    "child_cad_numbers": null,
    "source": "Rosreestr (USRR reference service)",
    "error": "HTTP 406: {\"error\":\"Wrong captcha\"}"
  },
  "fssp": {
    "skipped": true,
    "reason": "GET requests do not support passing the owner's full name",
    "has_active_proceedings": null,
    "count": null,
    "proceedings": null,
    "source": null,
    "error": null
  }
}

Response parameters

Name Data type Description
cadastral_number string Cadastral number
summary object Check summary
nspd object NSPD data
rosreestr_sprav object Rosreestr data
fssp object FSSP data