composer require mistrfilda/pid-api Currently supports V2 of API - https://api.golemio.cz/v2 - more about api on https://golemioapi.docs.apiary.io/
- Obtain access token - https://golemioapi.docs.apiary.io/
- Use new instance of prepared class with endpoints
$golemioService = new \Mistrfilda\Pid\Api\GolemioService('Your access token');Each response returns data value object with obtained response. For example, get stops returns Stop response object
- GTFS stops (https://golemioapi.docs.apiary.io/#reference/public-transport/gtfs-stops/get-all-gtfs-stops) -
$golemioService->sendGetStopsRequest(); - GTFS trips (https://golemioapi.docs.apiary.io/#reference/public-transport/gtfs-trips/get-all-gtfs-trips) -
$golemioService->sendGetStopTripsRequest(); - GTFS stoptimes (https://golemioapi.docs.apiary.io/#reference/public-transport/gtfs-stops-times/get-gtfs-stop-times) -
$golemioService->sendGetStopTimesRequest(); - Vehicle positions (https://golemioapi.docs.apiary.io/#reference/public-transport/vehicle-positions/get-all-vehicle-positions) -
$golemioService->sendGetVehiclePositionRequest(); - Parkings (https://golemioapi.docs.apiary.io/#reference/parking/parking-lots/get-all-parking-lots) -
$golemioService->sendGetParkingLotRequest
| Endpoint | API doc url | Golemio service method |
|---|---|---|
| GTFS stops | https://golemioapi.docs.apiary.io/#reference/public-transport/gtfs-stops/get-all-gtfs-stops | $golemioService->sendGetStopsRequest(); |
| GTFS trips | https://golemioapi.docs.apiary.io/#reference/public-transport/gtfs-trips/get-all-gtfs-trips | $golemioService->sendGetStopTripsRequest(); |
| GTFS stoptimes | https://golemioapi.docs.apiary.io/#reference/public-transport/gtfs-stops-times/get-gtfs-stop-times | $golemioService->sendGetStopTimesRequest(); |
| Vehicle positions | https://golemioapi.docs.apiary.io/#reference/public-transport/vehicle-positions/get-all-vehicle-positions | $golemioService->sendGetVehiclePositionRequest(); |
| Parkings | https://golemioapi.docs.apiary.io/#reference/parking/parking-lots/get-all-parking-lots | $golemioService->sendGetParkingLotRequest(); |
$rssService = new \Mistrfilda\Pid\Api\RssService();More info about rss feeds can be found here https://pid.cz/rss-kanal/.
- Planned transport restrictions - long term (https://pid.cz/feed/rss-vyluky) -
$rssService->getLongTermRestrictions() - Current transport restrictions - short term (https://pid.cz/feed/rss-mimoradnosti) -
$rssService->getShortTermRestrictions()