Skip to main content
POST
/
api
/
rosreestr
/
objects
/
search
/rosreestr/objects/search
curl --request POST \
  --url https://api.anysite.io/api/rosreestr/objects/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "@rosreestr_object",
    "cad_number": "<string>",
    "category_id": 123,
    "category_name": "<string>",
    "type": "<string>",
    "name": "<string>",
    "purpose": "<string>",
    "address": "<string>",
    "status": "<string>",
    "is_removed": true,
    "area": 123,
    "declared_area": 123,
    "specified_area": 123,
    "built_up_area": 123,
    "cadastral_cost": 123,
    "cost_index": 123,
    "cost_application_date": "<string>",
    "cost_determination_date": "<string>",
    "cost_registration_date": "<string>",
    "cost_determination_basis": "<string>",
    "floor": "<string>",
    "floors": "<string>",
    "underground_floors": "<string>",
    "year_built": "<string>",
    "year_commissioning": "<string>",
    "degree_readiness": "<string>",
    "extension": 123,
    "height": 123,
    "depth": 123,
    "volume": 123,
    "land_category": "<string>",
    "permitted_use": "<string>",
    "ownership_type": "<string>",
    "right_type": "<string>",
    "parent_cad_number": "<string>",
    "quarter_cad_number": "<string>",
    "facility_cad_number": "<string>",
    "included_cad_numbers": [],
    "land_cad_numbers": [],
    "cadastral_district": "<string>",
    "zone_type": "<string>",
    "boundary_type": "<string>",
    "border_reg_number": "<string>",
    "restrictions": "<string>",
    "legal_act": {
      "@type": "@rosreestr_legal_act",
      "name": "<string>",
      "number": "<string>",
      "act_date": "<string>",
      "issuer": "<string>"
    },
    "registration_date": "<string>",
    "is_cultural_heritage": true,
    "objdoc_id": 123,
    "registers_id": 123,
    "geometry": {
      "type": "<string>",
      "@type": "@rosreestr_geometry",
      "coordinates": [
        "<unknown>"
      ],
      "crs": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Cadastral number or free-text address to search the EGRN cadastre for

Minimum string length: 1
Examples:

"77:01:0001044:3030"

"Москва, Тверская улица, 13"

"Краснодар, улица Красная"

count
integer
required

Number of objects to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
category
enum<string> | null

Restrict results to a single object category

Available options:
land_parcel,
building,
premise,
parking,
construction,
incomplete_construction,
complex,
zone

Response

Successful Response

@type
string
default:@rosreestr_object
cad_number
string | null
category
enum<string> | null
Available options:
land_parcel,
building,
premise,
parking,
construction,
incomplete_construction,
complex,
zone
category_id
integer | null
category_name
string | null
type
string | null
name
string | null
purpose
string | null
address
string | null
status
string | null
is_removed
boolean | null
area
number | null
declared_area
number | null
specified_area
number | null
built_up_area
number | null
cadastral_cost
number | null
cost_index
number | null
cost_application_date
string | null
cost_determination_date
string | null
cost_registration_date
string | null
cost_determination_basis
string | null
floor
string | null
floors
string | null
underground_floors
string | null
year_built
string | null
year_commissioning
string | null
degree_readiness
string | null
extension
number | null
height
number | null
depth
number | null
volume
number | null
land_category
string | null
permitted_use
string | null
ownership_type
string | null
right_type
string | null
parent_cad_number
string | null
quarter_cad_number
string | null
facility_cad_number
string | null
included_cad_numbers
string[]
land_cad_numbers
string[]
cadastral_district
string | null
zone_type
string | null
boundary_type
string | null
border_reg_number
string | null
restrictions
string | null
registration_date
string | null
is_cultural_heritage
boolean | null
objdoc_id
integer | null
registers_id
integer | null
geometry
RosreestrGeometry · object