List of cyclist counters with count history

This dataset provides a list of automatic bicycle counters in the city of Žilina, including their location, name, provider, and historical data on the number of bicycle trips over the last 7 and 30 days. The data can be used to analyze bicycle traffic intensity, track trends, and support cycling infrastructure planning. Graphical data visualization as well as the display of device locations on the map can be found on the public portal.

Author
Platforma Invipo

Format
API JSON

License
Open Database License (ODbL)

Last modified
26. 3. 2026

Request

POST https://opendata.zilina.sk/api/datasets/v1/city-dashboard/bicycles/list

Parameters

{
  "classType": "bike"
}
classType (string, required) – The type of objects to include in the result. For this dataset, the value "bike" is used, which indicates cyclist counters.


USER GUIDE

Detailed instructions for querying datasets are available here.

Answer

[
  {
    "history": {
      "countLast7Days": 1158,
      "last7Days": [
        {
          "count": 172,
          "temperatures": {
            "day": 4,
            "night": -1
          },
          "timestamp": "2026-02-03T23:00:00.000Z"
        },
        {
          "count": 177,
          "temperatures": {
            "day": 7,
            "night": 1
          },
          "timestamp": "2026-02-04T23:00:00.000Z"
        },
        ...,
        {
          "count": 202,
          "temperatures": {
            "day": 6,
            "night": 2
          },
          "timestamp": "2026-02-09T23:00:00.000Z"
        }
      ],
      "last30Days": [
        {
          "count": 26,
          "timestamp": "2026-01-11T23:00:00.000Z"
        },
        ...,
        {
          "count": 202,
          "timestamp": "2026-02-09T23:00:00.000Z"
        }
      ]
    },
    "lat": 49.212345,
    "lng": 18.75272,
    "name": "CYC_Vysokoškolákov",
    "id": "69452d631155360001f5d5d5",
    "provider": "Ecocounter"
  },
  {
    "history": {
      "countLast7Days": 596,
      "last7Days": [
        {
          "count": 89,
          "temperatures": {
            "day": 4,
            "night": -1
          },
          "timestamp": "2026-02-03T23:00:00.000Z"
        },
        ...,
        {
          "count": 106,
          "temperatures": {
            "day": 6,
            "night": 2
          },
          "timestamp": "2026-02-09T23:00:00.000Z"
        }
      ],
      "last30Days": [
        {
          "count": 46,
          "timestamp": "2026-01-11T23:00:00.000Z"
        },
        ...,
        {
          "count": 106,
          "timestamp": "2026-02-09T23:00:00.000Z"
        }
      ]
    },
    "lat": 49.21369,
    "lng": 18.76122,
    "name": "CYC_Hlboká",
    "id": "69452d631155360001f5d5e1",
    "provider": "Ecocounter"
  }
]
history - Historical cyclist count object for the given counter.
history.countLast7Days - Total number of bicycle trips for the last 7 days.
history.last7Days - List of daily statistics for the last 7 days.
history.last7Days[].count - Number of recorded bicycle trips for the given day.
history.last7Days[].temperatures - Object with average day and night temperatures.
history.last7Days[].temperatures.day - Average day temperature for the given day (°C).
history.last7Days[].temperatures.night - Average night temperature for the given day (°C).
history.last7Days[].timestamp - Timestamp (typically end of day in UTC) to which the given record refers.
history.last30Days - List of daily statistics for the last 30 days.
history.last30Days[].count - The number of recorded bicycle trips on a given day.
history.last30Days[].timestamp - The timestamp of the day to which the given count belongs.
lat - The latitude of the cyclist counter location.
lng - The longitude of the cyclist counter location.
name - The name or internal designation of the counter (e.g., the location location).
id - The unique identifier of the counter in the system.
provider - The name of the provider of the technology or counting system (e.g., "Ecocounter").

The response contains an array of objects, each object representing one cyclist counter with historical trip data.
Datasets user guide