BVG transport.rest
BVG transport.rest — Berlin public-transport stops and departures
BVG transport.rest exposes berlin public-transport stops and departures We verified a keyless GET endpoint returning JSON (Transportation). Check the provider docs for rate limits and terms before production use.
GET https://v6.bvg.transport.rest/locations?query=alexanderplatz
[
{
"type": "stop",
"id": "900100003",
"name": "S+U Alexanderplatz Bhf (Berlin)",
"location": {
"type": "location",
"id": "900100003",
"latitude": 52.521508,
"longitude": 13.411267
},
"products": {
"suburban": true,
"subway": true,
"tram": true,
"bus": true,
"ferry": false,
"express": false,
"regional": false
},
"ids": {
"ifopt": "de:11000:900100003"
}
},
{
"type": "stop",
"id": "900100024",
"name": "S+U Alexanderplatz Bhf/Dircksenstr. (Berlin)",
"location": {
"type": "location",
"id": "900100024",
"latitude": 52.521481,
"longitude": 13.411924
},
"products": {
"suburban": true,
"subway": true,
"tram": true,
"bus": true,
"ferry": false,
"express": false,
"regional": false
},
"ids": {
"ifopt": "de:11000:900100024"
}
}
]curl "https://v6.bvg.transport.rest/locations?query=alexanderplatz"const res = await fetch("https://v6.bvg.transport.rest/locations?query=alexanderplatz");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://v6.bvg.transport.rest/locations?query=alexanderplatz")
print(res.json())/locations?query=alexanderplatzPROBEDBVG transport.rest — Berlin public-transport stops and departures
/locations?limit=5Location search or listing.
/locations?page=1Location search or listing.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
BVG transport.rest: common questions
Is BVG transport.rest free to use?
Yes — BVG transport.rest is a free transport API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does BVG transport.rest need an API key?
No — BVG transport.rest needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call BVG transport.rest from the browser?
Yes — BVG transport.rest 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 BVG transport.rest up right now?
As of our last scheduled check, BVG transport.rest is dying with 71.6% uptime over 90 days and a 1106 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.