City Bikes API
Overview
City Bikes API gives you real-time data on bike-sharing stations across hundreds of cities worldwide. You can check how many bikes are available at each station and see station locations on a map. It requires no API key, so you can start experimenting right away.
Beginner Tip
Start by fetching the full network list at /v2/networks to find the network ID for your city, then drill into /v2/networks/{id} to get live station data.
Available Data
Example Response
{
"match_id": 4521,
"home_team": "Team A",
"away_team": "Team B",
"score": {
"home": 2,
"away": 1
},
"status": "Full Time",
"date": "2025-01-15",
"league": "Premier League"
} Field Reference
id Unique identifier for the bike network, used in subsequent requests name Human-readable name of the bike-sharing network location.city City where the network operates location.latitude Latitude of the network center stations List of bike stations with availability and coordinates (included only when ?fields=stations is requested) free_bikes Number of bikes currently available at a station Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://api.citybik.es/v2/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →balldontlie
⭐ Beginner's Pickballdontlie is a completely free, no-auth-required API that provides NBA basketball statistics including player data, team information, game scores, and season averages.
Ergast F1
Ergast F1 provides programmatic access to f1 data from the beginning of the world championships in 1950 via REST API.
Football (Soccer) Videos
⭐ Beginner's PickFootball (Soccer) Videos API by Scorebat provides embed codes for goals and match highlights from top leagues like the Premier League and Bundesliga.
Football Standings
⭐ Beginner's PickFootball Standings API provides current league standings for popular football competitions like the EPL, La Liga, and Serie A, sourced from ESPN.
MLB Records and Stats
⭐ Beginner's PickMLB Records and Stats API provides current and historical statistics for Major League Baseball, including player batting and pitching records, team stats, and season standings.