resolve_parcel
Resolve any land parcel to its cadastral identity using a parcel ID, locality with number, or geographic coordinates. Returns parcel details including district, area, and coordinates.
Instructions
Resolve a land parcel to its cadastral identity using exactly ONE of:
parcelId: a full cadastral id, either raw '/' form ('142907_2.0014.342/5') or URL-safe '-' form ('142907_2.0014.342-5'), or the internal UUID from search results.
q: a full cadastral id, a UUID, OR free-text 'locality name + parcel number' (e.g. 'Sabnie 342/5'). Name matching is exact on the locality (case-insensitive) — an unusual spelling may miss.
lat & lng: a WGS84 point inside the parcel (returns the parcel(s) containing that point). Returns a list of matching parcels with district, area, and coordinates; 'truncated' when the name+number match was capped. When nothing matches, coverage is not_covered and the credit is refunded. Use this to turn an address point, a coordinate, or a locality+number into a concrete parcel id — then feed that id to search_transactions (parcelId) to see its sale history. Costs 1 API token (refunded when nothing matches).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Full cadastral id, a UUID, or 'locality name + parcel number' (e.g. 'Sabnie 342/5'). Mutually exclusive with parcelId and lat/lng. | |
| lat | No | Latitude WGS84. Must be paired with lng. Mutually exclusive with q and parcelId. | |
| lng | No | Longitude WGS84. Must be paired with lat. Mutually exclusive with q and parcelId. | |
| parcelId | No | Full cadastral id (slash or dash form) or internal UUID. Mutually exclusive with q and lat/lng. |