All requests to our real time API should send the Client-Identifier
header. This should contain a value that describes the application accessing the API. The value should contain your company/organization name, follwed by a dash and the application's name, like mycompany-travelplanner
or myname-citymonitor
.
Auto-discovery file that links to all of the other files published by the system.
Endpoint: gbfs.json (Documentation)
curl -H "Client-Identifier: IDENTIFIER" https://gbfs.urbansharing.com/lovelolibreservice.fr/gbfs.json
Machine readable basic information about LOVELO Self-service
Endpoint: system_information.json (Documentation)
curl -H "Client-Identifier: IDENTIFIER" \ https://gbfs.urbansharing.com/lovelolibreservice.fr/system_information.json
Information about all stations, including geolocation, addresses and descriptions
Endpoint: station_information.json (Documentation)
curl -H "Client-Identifier: IDENTIFIER" \ https://gbfs.urbansharing.com/lovelolibreservice.fr/station_information.json
Bike and dock availability
Endpoint: station_status.json (Documentation)
curl -H "Client-Identifier: IDENTIFIER" \ https://gbfs.urbansharing.com/lovelolibreservice.fr/station_status.json
{ "last_updated": 1540219230, "data": { "stations": [ { "is_installed": 1, "is_renting": 1, "num_bikes_available": 7, "num_docks_available": 5, "last_reported": 1540219230, "is_returning": 1, "station_id": "175" }, { "is_installed": 1, "is_renting": 1, "num_bikes_available": 4, "num_docks_available": 8, "last_reported": 1540219230, "is_returning": 1, "station_id": "47" }, { "is_installed": 1, "is_renting": 1, "num_bikes_available": 4, "num_docks_available": 9, "last_reported": 1540219230, "is_returning": 1, "station_id": "10" } ] } }