City Bikes
Live bike-share stations from 500+ networks worldwide
CityBikes aggregates real-time bike-sharing data from hundreds of systems across the globe into one consistent API. List every network with its location and operator, then drill into any network for live station availability. Free and keyless with permissive CORS.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.citybik.es/v2/networks
{
"networks": [
{
"id": "abu-dhabi-careem-bike",
"name": "Abu Dhabi Careem BIKE",
"location": {
"latitude": 24.4866,
"longitude": 54.3728,
"city": "Abu Dhabi",
"country": "AE"
},
"href": "/v2/networks/abu-dhabi-careem-bike",
"company": [
"Careem"
]
}
]
}curl "https://api.citybik.es/v2/networks"const res = await fetch("https://api.citybik.es/v2/networks");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.citybik.es/v2/networks")
print(res.json())/networksPROBEDLive bike-share stations from 500+ networks worldwide
/networks?limit=5Paginated variant with limit parameter.
/networks/network_idNetwork Id — documented GET route.
/networks?fields=id,name,hrefNetworks — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
City Bikes: common questions
Is City Bikes free to use?
Yes — City Bikes is a free health & food API. Free tier: Free — no key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does City Bikes need an API key?
No — City Bikes needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call City Bikes from the browser?
Yes — City Bikes returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is City Bikes up right now?
City Bikes is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.