GET municipality/{municipalityCode}?geometry={geometry}&srs={srs}

Get municipality details. Select municipality by municipalityCode.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
municipalityCode

the municipalityCode of the City

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

Body Parameters

None.

Response Information

Resource Description

MunicipalityObject
NameDescriptionTypeAdditional information
municipalityCode

string

None.

municipalityName

string

None.

geometry

Geometry

None.

result

Result

None.

Response Formats

application/json, text/json

Sample:
{
  "municipalityCode": "sample string 1",
  "municipalityName": "sample string 2",
  "geometry": {
    "boundingBox": "sample string 1",
    "center": "sample string 2",
    "shape": "sample string 3"
  },
  "result": {
    "succes": true,
    "startTimeStamp": "2025-12-12T17:02:25.2033494+00:00",
    "endTimeStamp": "2025-12-12T17:02:25.2033494+00:00",
    "elapsed": 4,
    "errorMessage": "sample string 5"
  }
}

application/xml, text/xml

Sample:
<MunicipalityObject 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>
  <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:25.2033494+00:00</StartTimeStamp>
    <EndTimeStamp>2025-12-12T17:02:25.2033494+00:00</EndTimeStamp>
    <Elapsed>4</Elapsed>
    <ErrorMessage>sample string 5</ErrorMessage>
  </Result>
</MunicipalityObject>