Traffic Load of Detectors in Traffic Control System

This dataset provides data on traffic intensity recorded by traffic detectors as part of the traffic control system. It contains aggregated information on the number of vehicles passing through specific detectors within a defined time interval. The data can be used for traffic flow analysis, optimization of traffic control, infrastructure planning, and other analytical purposes.

Author
Platforma Invipo

Format
API JSON

License
Open Database License (ODbL)

Last modified
12. 12. 2025

This dataset provides data on traffic intensity recorded by traffic detectors as part of the traffic control system. It contains aggregated information on the number of vehicles passing through specific detectors within a defined time interval. The data can be used for traffic flow analysis, optimization of traffic control, infrastructure planning, and other analytical purposes.

Author
Platforma Invipo

Format
API JSON

License
Open Database License (ODbL)

Last modified
12. 12. 2025

Request

POST https://odpzilina.invipo.partners/api/datasets/v1/traffic-control/detectors/loads

Parameters

{
  "source": "eDaptiva",
  "itemId": "648c82d61b2d2100016e9ee3",
  "detectorIds": [
    1808,
    1809,
    1810,
    1811,
    1812,
    1813,
    1814,
    1815,
    1816,
    1817,
    1818,
    1819,
    1820,
    1821,
    1822,
    1823,
    1824,
    1825
  ],
  "from": "2023-12-12T10:00:00.000Z",
  "to": "2023-12-12T15:00:00.000Z"
}
source (string, required) – Specifies the data source. Possible values:
"invipo" – Data from the Invipo platform
"eDaptiva" – Data from the eDaptiva platform
itemId (string, required) – Identifier of the monitored object within the system.
detectorIds (array of numbers, optional) – List of detector IDs for which data should be returned. If not specified, data for all available detectors may be returned.
from (string, required, ISO 8601 format) – Start time of the requested interval. Example: "2023-12-12T10:00:00.000Z".
to (string, required, ISO 8601 format) – End time of the requested interval. Example: "2023-12-12T15:00:00.000Z".

Answer

[
  {
    "intervalStart": "2023-12-12T10:00:00Z",
    "intervalEnd": "2023-12-12T10:10:00Z",
    "loads": [
      {
        "id": 61698505,
        "detectorId": 1808,
        "vehiclesPerHour": 342,
        "isValid": true,
        "isProcessed": false
      },
      {
        "id": 61698509,
        "detectorId": 1809,
        "vehiclesPerHour": 54,
        "isValid": true,
        "isProcessed": false
      }
    ]
  }
]