Unless stated otherwise, this page refers to Ukrainian companies and individual entrepreneurs and uses identifiers from Ukrainian public registries.
This request returns the list of enterprise land plots with cadastral numbers, KATOTTG or KOATUU codes, other plot data, and the sources where they were found.
GET /api/v1/enterprises/{registry_id}/land-plots
The response returns a short enterprise block and the list of land plots.
The registry_id parameter in the request path is required. It is the enterprise identifier.
Example request
$ ESG_API_TOKEN="your_api_token"
$ curl "https://esg.saveecobot.com/api/v1/enterprises/00178353/land-plots" \
-H "Authorization: Bearer $ESG_API_TOKEN" \
-H 'Accept: application/json'
Example response
{
"results": {
"enterprise": {
"type": "company",
"registry_id": "00178353"
},
"items": [
{
"cadastral_number": "5920682000:01:001:0001",
"katottg": null,
"koatuu": {
"code": "5920682000",
"name": "СУМСЬКА ОБЛАСТЬ, БІЛОПІЛЬСЬКИЙ РАЙОН, ВИРІВСЬКА"
},
"area_ha": 3.14,
"purpose": "Для ведення товарного сільськогосподарського виробництва",
"region": "Сумська область",
"sources": [
{
"label": "Аграрні розписки",
"count": 1
}
],
"first_actual_at": "2024-01-01",
"last_actual_at": "2026-05-01"
}
]
},
"stats": { "..." }
}
Pagination parameters
page: page number.
Response fields
results.items[]
cadastral_number: cadastral number of the plot.katottg: KATOTTG information, if present.katottg.code: KATOTTG code.katottg.name: KATOTTG name.koatuu: KOATUU information, if present.koatuu.code: KOATUU code.koatuu.name: KOATUU name.area_ha: plot area in hectares.purpose: intended use of the plot.region: plot region.sources[]: sources where the land plot was found.sources[].label: source name.sources[].count: how many times the plot is confirmed by this source.first_actual_at: date when the plot first became actual.last_actual_at: date of the latest known actuality of the plot.