Aggregated Traffic Loads of Detectors

This dataset provides aggregated traffic load data recorded by traffic detectors in 10-minute intervals. It includes information on the number of vehicles passing through each detector within the specified time period. The data can be used for traffic intensity analysis, peak hour predictions, and traffic management optimization.

Author
Platforma Invipo

Format
API JSON

License
Open Database License (ODbL)

Last modified
12. 12. 2025

This dataset provides aggregated traffic load data recorded by traffic detectors in 10-minute intervals. It includes information on the number of vehicles passing through each detector within the specified time period. The data can be used for traffic intensity analysis, peak hour predictions, and traffic management optimization.

Author
Platforma Invipo

Format
API JSON

License
Open Database License (ODbL)

Last modified
12. 12. 2025

Request

POST https://odpzilina.invipo.partners/api/datasets/v2/traffic-control/reports/aggregated-loads

Parameters

{
  "from": "2022-12-28T10:51:20.516Z",
  "to": "2022-12-29T07:51:20.516Z",
  "itemIds": [
    "611a65374203550001c13789"
  ]
}
from (string, required, ISO 8601 format) – Start time of the requested interval. Example: "2022-12-28T10:51:20.516Z".
to (string, required, ISO 8601 format) – End time of the requested interval. Example: "2022-12-29T07:51:20.516Z".
itemIds (array of strings, required) – List of object identifiers for which data should be returned.

Answer

{
  "intervalStart": "2022-12-29T07:50:00Z",
  "intervalEnd": "2022-12-29T08:00:00Z",
  "loads": [
    {
      "detector": "V3P.1",
      "vehicles": 60
    },
    {
      "detector": "V3P.2",
      "vehicles": 54
    }
  ]
}