BikeRental Resource

GET /otp/routers/{ignoreRouterId}/bike_rental

Request Parameters
name type description
ignoreRouterId path
locale query
lowerLeft query
upperRight query
Response Body
media type data type description
application/json BikeRentalStationList (JSON)

Example

Request
GET /routers/{ignoreRouterId}/bike_rental
Content-Type: */*
Accept: application/json

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{
  "stations" : [ {
    "id" : "...",
    "y" : 12345.0,
    "x" : 12345.0,
    "bikesAvailable" : 12345,
    "spacesAvailable" : 12345,
    "allowDropoff" : true,
    "isFloatingBike" : true,
    "isCarStation" : true,
    "networks" : [ "...", "..." ],
    "realTimeData" : true,
    "name" : "..."
  }, {
    "id" : "...",
    "y" : 12345.0,
    "x" : 12345.0,
    "bikesAvailable" : 12345,
    "spacesAvailable" : 12345,
    "allowDropoff" : true,
    "isFloatingBike" : true,
    "isCarStation" : true,
    "networks" : [ "...", "..." ],
    "realTimeData" : true,
    "name" : "..."
  } ]
}