List of parking lots with current occupancy

The dataset provides an overview of public parking lots in the city, including their location, type, capacity, current occupancy, supported payment methods, availability for LPG vehicles, tariff conditions, and historical occupancy throughout the day. The data can be used for driver navigation, parking planning, and parking capacity utilization analysis.

Author
Platforma Invipo

Format
API JSON

License
Open Database License (ODbL)

Last modified
11. 12. 2025

The dataset provides an overview of public parking lots in the city, including their location, type, capacity, current occupancy, supported payment methods, availability for LPG vehicles, tariff conditions, and historical occupancy throughout the day. The data can be used for driver navigation, parking planning, and parking capacity utilization analysis.

Author
Platforma Invipo

Format
API JSON

License
Open Database License (ODbL)

Last modified
11. 12. 2025

Request

POST https://odpzilina.invipo.partners/api/datasets/v1/city-dashboard/parking/list

Parameters

-
The dataset has no input parameters.

Answer

[
  {
    "id": "67b5e8c335c59400017efe4b",
    "name": "Antona Bernoláka",
    "provider": {
      "name": "Mesto Žilina"
    },
    "lat": 49.21805180522654,
    "lng": 18.74079667765875,
    "area": {
      "type": "Polygon",
      "coordinates": [
        [
          [
            18.740720628549184,
            49.21711505344604
          ],
          [
            18.741154048032854,
            49.21714336415812
          ],
          [
            18.740974488532657,
            49.218704472606305
          ],
          ...
        ]
      ]
    },
    "parkingLots": [],
    "type": "offstreet",
    "paid": true,
    "occupancy": {
      "overall": {
        "total": 62,
        "free": 23
      },
      "grouped": [
        {
          "permit": "DisabledPermit",
          "total": 2,
          "free": 1
        },
        {
          "permit": "MotoPermit",
          "total": 9,
          "free": 9
        }
      ]
    },
    "payments": [
      "Card",
      "Sms",
      "Mobile"
    ],
    "accessibility": {
      "lpg": true
    },
    "capacity": {
      "total": 62
    },
    "public": {
      "streetView": {
        "disabled": false,
        "position": {
          "type": "Point",
          "coordinates": [
            18.7411756,
            49.2170525
          ]
        },
        "heading": 320,
        "pitch": 8
      }
    },
    "tariffs": [
      {
        "dayofWeek": [
          "Monday",
          "Tuesday",
          "Wednesday",
          "Thursday"
        ],
        "items": [
          {
            "from": "08:00",
            "to": "20:00",
            "unit": "hour",
            "currency": "EUR",
            "value": "0.80"
          }
        ],
        "note": "priceWithSms1eur"
      }
    ],
    "devices": [
      {
        "name": "Parkomat č. 42, Ulica Antona Bernoláka",
        "id": 3,
        "type": "PaymentTerminal",
        "position": {
          "type": "Point",
          "coordinates": [
            18.741045,
            49.218179
          ]
        }
      }
    ],
    "history": {
      "last24": [
        {
          "hour": 8,
          "value": 70
        },
        {
          "hour": 9,
          "value": 66
        },
        {
          "hour": 10,
          "value": 61
        },
        ...
      ],
      "workingDays": [
        {
          "hour": 8,
          "value": 60
        },
        {
          "hour": 9,
          "value": 61
        },
        {
          "hour": 10,
          "value": 62
        },
        ...
      ],
      "nonWorkingDays": [
        {
          "hour": 8,
          "value": 48
        },
        {
          "hour": 9,
          "value": 54
        },
        {
          "hour": 10,
          "value": 58
        },
        ...
      ]
    }
  }
]
accessibility - Object of additional accessibility of the parking lot.
accessibility.lpg - Information whether the parking lot is accessible for LPG vehicles.
area - Object describing the parking lot area.
area.coordinates - Field of coordinates bounding the parking lot area.
area.type - Area geometry type (e.g. "Polygon").
capacity - Parking lot capacity object.
capacity.total - Total number of parking spaces in the parking lot.
devices - List of devices assigned to the parking lot (e.g. parking meters).
devices.id - Device identifier.
devices.name - Device name.
devices.position - Device location.
devices.position.coordinates - Device location coordinates.
devices.position.type - Position geometry type (e.g. "Point").
devices.type - Device type (e.g. "PaymentTerminal").
history - Object with historical parking lot occupancy.
history.last24 - Parking lot occupancy values ​​for the last 24 hours.
history.nonWorkingDays - Typical parking lot occupancy during non-working days.
history.workingDays - Typical parking lot occupancy during working days.
history.*.hour - Hour of the day (0-23) for which the occupancy value is given.
history.*.value - Estimated parking lot occupancy (e.g., percentage or relative value).
id - Parking lot identifier.
lat - Latitude of the center of the parking lot.
lng - Longitude of the center of the parking lot.
name - Parking lot name.
occupancy - Current parking lot occupancy object.
occupancy.grouped - List of occupancy by permit type.
occupancy.grouped.free - Number of free spaces for the given permit type.
occupancy.grouped.permit - Permit type (e.g., disabled parking or motorcycle parking).
occupancy.grouped.total - Total number of spaces for the given permit type.
occupancy.overall - Total occupancy of the parking lot.
occupancy.overall.free - Current number of free parking spaces.
occupancy.overall.total - Total number of parking spaces.
paid - Information on whether parking is charged at the given parking lot.
parkingLots - List of sub-parking lots or sections of the parking lot (if defined).
payments - List of supported parking payment methods.
provider - Parking provider object.
provider.name - Name of the entity that manages the parking lot.
public - Parking public display settings object.
public.streetView - Street View view settings.
public.streetView.heading - Street View camera view direction in degrees.
public.streetView.pitch - Street View camera pitch.
public.streetView.position - Street View camera position.
public.streetView.position.coordinates - Camera position coordinates.
public.streetView.position.type - Camera position geometry type (e.g. "Point").
tariffs - List of parking tariff rules.
tariffs.dayofWeek - List of days of the week for which the tariff applies.
tariffs.items - List of tariff items.
tariffs.items.currency - Payment currency (e.g. "EUR").
tariffs.items.from - Start of the charged time interval.
tariffs.items.to - End of the charged time interval.
tariffs.items.unit - Time unit of billing (e.g. "hour").
tariffs.items.value - Price for parking in a given time unit.
tariffs.note - Text note or internal tariff code.
type - Type of parking lot (e.g. "offstreet" - off-street parking).