GET municipality/{municipalityCode}/department/{departmentCode}/section/{sectionCode}/parcel/{parcelCode1}/{parcelCode2}?geometry={geometry}&srs={srs}&data={data}&status={status}
Get parcel details. Select municipality by municipalityCode,department by departmentCode, section by sectionCode and parcel by perceelnummer.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| municipalityCode |
Resultset is filtered by municipalityCode |
string |
Required |
| departmentCode |
Resultset is filtered by departmentCode |
string |
Required |
| sectionCode |
Resultset is filtered by sectionCode |
string |
Required |
| parcelCode1 |
First part of perceelnummer (delimiter '/') |
string |
Required |
| parcelCode2 |
Second part of perceelnummer (delimiter '/') |
string |
Required |
| geometry |
optional parameter to return geometry information. [bbox|no|full] - bbox: return center and envelope (default) - no: no geometry information - full: same as bbox, but returns the actual geometry as well |
string |
Default value is bbox |
| srs |
optional parameter to choose an srs. [31370|4326|3857|3812] - 31370: Lambert72 (default) - 4326: Wgs84 - 3857: WebMercator - 3812: Lambert2008 |
string |
Default value is 31370 |
| data |
optional parameter to choose a data source: [rvv|adp] - adp: administratief perceel (default) - rvv: administratief perceel Recht Van Voorkoop |
string |
Default value is cadmap |
| status |
optional parameter to select a data source: [fiscal|actual] (**only relevant for data=adp**) - fiscal: fiscale toestand 1 januari meest recente jaargang (default) - actual: actuele toestand |
string |
Default value is fiscal |
Body Parameters
None.
Response Information
Resource Description
ParcelObject| Name | Description | Type | Additional information |
|---|---|---|---|
| municipalityCode | string |
None. |
|
| municipalityName | string |
None. |
|
| departmentCode | string |
None. |
|
| departmentName | string |
None. |
|
| sectionCode | string |
None. |
|
| perceelnummer | string |
None. |
|
| capakey | string |
None. |
|
| grondnummer | string |
None. |
|
| exponent | string |
None. |
|
| macht | string |
None. |
|
| bisnummer | string |
None. |
|
| adres | Collection of string |
None. |
|
| geometry | Geometry |
None. |
|
| result | Result |
None. |
Response Formats
application/json, text/json
{
"municipalityCode": "sample string 1",
"municipalityName": "sample string 2",
"departmentCode": "sample string 3",
"departmentName": "sample string 4",
"sectionCode": "sample string 5",
"perceelnummer": "sample string 6",
"capakey": "sample string 7",
"grondnummer": "sample string 8",
"exponent": "sample string 9",
"macht": "sample string 10",
"bisnummer": "sample string 11",
"adres": [
"sample string 1",
"sample string 2"
],
"geometry": {
"boundingBox": "sample string 1",
"center": "sample string 2",
"shape": "sample string 3"
},
"result": {
"succes": true,
"startTimeStamp": "2025-12-12T17:02:26.2038283+00:00",
"endTimeStamp": "2025-12-12T17:02:26.2038283+00:00",
"elapsed": 4,
"errorMessage": "sample string 5"
}
}
application/xml, text/xml
<ParcelObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<MunicipalityCode>sample string 1</MunicipalityCode>
<MunicipalityName>sample string 2</MunicipalityName>
<DepartmentCode>sample string 3</DepartmentCode>
<DepartmentName>sample string 4</DepartmentName>
<SectionCode>sample string 5</SectionCode>
<Perceelnummer>sample string 6</Perceelnummer>
<Capakey>sample string 7</Capakey>
<Grondnummer>sample string 8</Grondnummer>
<Exponent>sample string 9</Exponent>
<Macht>sample string 10</Macht>
<Bisnummer>sample string 11</Bisnummer>
<adres>
<string>sample string 1</string>
<string>sample string 2</string>
</adres>
<Geometry>
<boundingBoxGml xmlns="http://www.opengis.net/gml">sample string 4</boundingBoxGml>
<centerGml xmlns="http://www.opengis.net/gml">sample string 5</centerGml>
<shapeGml xmlns="http://www.opengis.net/gml">sample string 6</shapeGml>
</Geometry>
<Result>
<Success>true</Success>
<StartTimeStamp>2025-12-12T17:02:26.2038283+00:00</StartTimeStamp>
<EndTimeStamp>2025-12-12T17:02:26.2038283+00:00</EndTimeStamp>
<Elapsed>4</Elapsed>
<ErrorMessage>sample string 5</ErrorMessage>
</Result>
</ParcelObject>