Parking places and parking areas (XML)

This dataset provides a list of parking-related items, such as parking areas or locations registered in the system. The output contains the item identifier, name, and geographic position. The dataset is suitable for displaying parking locations on a map or for further use in transport and parking applications.

Author
Platforma Invipo

Format
XML

License
Open Database License (ODbL)

Last modified
28. 4. 2026

Request

POST https://opendata.zilina.sk/api/datasets/v1/parking/items?outputType=xml

Parameters

{
  "limit": 10,
  "page": 1,
  "sort": "-name"
}
limit (number, optional) – Maximum number of items returned in one response.
page (number, optional) – Requested page number.
sort (string, optional) – Sorting of the result. For example, "-name" sorts items by name in descending order.

Answer

<root>
    <item>
        <id>67b5e8c335c59400017efe4b</id>
        <name>Antona Bernoláka</name>
        <position>
            <type>Point</type>
            <coordinates>
                <item>18.74079667765875</item>
                <item>49.21805180522654</item>
            </coordinates>
        </position>
    </item>
</root>
id (string) – Unique identifier of the parking item.
name (string) – Name of the parking item.
position (object) – Geographic position of the item.
position.type (string) – Geometry type, for example "Point".
position.coordinates (array of numbers) – Coordinates in format [longitude, latitude].
Datasets user guide