List of street lights (CSV)

This dataset provides a list of street light devices registered in the system. Each item represents a physical street light with its identifier, name and optional geographic position. The dataset supports pagination, sorting and optional metadata expansion.

Author
Platforma Invipo

Format
CSV

License
Open Database License (ODbL)

Last modified
28. 4. 2026

Request

POST https://opendata.zilina.sk/api/datasets/v2/street-lights/items?outputType=csv

Parameters

{
  "limit": 10,
  "page": 1,
  "sort": "-name"
}
limit (number, optional) – Number of records per page.
page (number, optional) – Page number starting from 1.
sort (string, optional) – Sorting field. Prefix with "-" for descending order. Default value is "-_id".

Answer

"id","name","position"
"68e63871b5c69600016923ba","Lightnet.001.1001","{""type"":""Point"",""coordinates"":[18.747539967298508,49.223743015900254]}"
"68e63872b5c69600016923e2","Lightnet.001.1002","{""type"":""Point"",""coordinates"":[18.747461009770632,49.22350203618407]}"
id (string) – Unique identifier of the street light.
name (string) – Name or label of the street light.
position (object, optional) – Geographic position of the street light.
position.type (string) – Geometry type, typically "Point".
position.coordinates (array of numbers) – Coordinates in format [longitude, latitude].

If expand is true, the response contains:
meta.documents.total (number) – Total number of available records.
meta.page.actual (number) – Current page.
meta.page.size (number) – Page size.
meta.page.total (number) – Total number of pages.
Datasets user guide