Golemio API

There are some examples of requests of Golemio API. You can use demo API key, otherwise generate your own at api.golemio.cz/api-keys

Postman collection

Postman is user friendly app for API testing - there is a prepared set of demo requests for easy start with Golemio API. Just import downloaded collection from ZIP archive.

Example requests

  • get all parkings (without any parameters - all parameters are optional)
    • {baseurl}/parkings/
  • get all parkings in 300m range around location 50.11548,14.437327 (using latlng and range parameters)
    • {baseurl}/parkings/?latlng=50.11548,14.437327&range=300
  • get all parkings in Prague 7 (using districts array parameter - works also for single value)
    • {baseurl}/parkings/?districts[]=praha7
  • get 10th - 20th record (2nd page of 10 elements each when paginating) (using limit and offset parameters)
    • {baseurl}/parkings/?limit=10&offset=10
  • get 10th - 20th record (2nd page of 10 elements each when paginating) of parkings in Prague 7 or Prague 8, which are in 3000m range from location 50.11548,14.437327. All parameters are evaluated at the same time (AND condition), but multiple values of the same array parameter districts are taken as OR. All filtering parameters are evaluated first, pagination (limit and offset) at the end on already filtered results.
    • {baseurl}/parkings/?latlng=50.11548,14.437327&range=300&districts[]=praha7&districts[]=praha8&limit=10&offset=10