Download OpenAPI specification:
| Date | Version | Notes |
|---|---|---|
| Fri Nov 14 2025 | 1.0.0 | Initial release of Predictions API |
{- "data": [
- {
- "station_id": "station-123",
- "name": "Central Station",
- "address": "123 Main Street",
- "latitude": 0,
- "longitude": 0,
- "capacity": 0,
- "created_at": "2025-11-14T14:18:55.857Z",
- "last_modified": "2025-11-14T14:18:55.857Z"
}
]
}List system's stations statuses
| systemId required | string |
{- "data": [
- {
- "station_id": "station-123",
- "status": true,
- "available_bikes": 0,
- "available_mechanical_bikes": 0,
- "available_electric_bikes": 0,
- "available_docks": 0,
- "disabled_bikes": 0,
- "disabled_mechanical_bikes": 0,
- "disabled_electric_bikes": 0,
- "disabled_docks": 0,
- "is_installed": true,
- "is_renting": true,
- "is_returning": true
}
]
}Predicts occupancy for the selected station attribute at the given timestamps
| systemId required | string |
| timestamps | Array of strings Example: Timestamps to predict for |
| category required | string Enum: "AVAILABLE_BIKES" "AVAILABLE_MECHANICAL_BIKES" "AVAILABLE_ELECTRIC_BIKES" "AVAILABLE_DOCKS" Example: category=AVAILABLE_BIKES The category of prediction |
{- "data": [
- {
- "station_id": "station-123",
- "predictions": [
- {
- "timestamp": "2025-11-14T14:05:35.295Z",
- "value": 0
}
]
}
]
}Predicts occupancy for the selected station attribute at the given timestamps
| systemId required | string |
| timestamps | Array of strings Example: Timestamps to predict for |
| category required | string Enum: "AVAILABLE_BIKES" "AVAILABLE_MECHANICAL_BIKES" "AVAILABLE_ELECTRIC_BIKES" "AVAILABLE_DOCKS" Example: category=AVAILABLE_BIKES The category of prediction |
{- "data": [
- {
- "station_id": "station-123",
- "predictions": [
- {
- "timestamp": "2025-11-14T14:15:05.136Z",
- "value": 0
}
]
}
]
}