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" : "..."
} ]
}