OpenLigaDB
Crowd-sourced football league fixtures and results, no key
OpenLigaDB is a community-maintained store of football match data, centered on the German Bundesliga but covering other competitions too. Grab matchdays, fixtures, results and team info as JSON with no key. The data is contributed and moderated by volunteers.
GET https://api.openligadb.de/getmatchdata/bl1/2023/1
{
"matchID": 66630,
"matchDateTime": "2023-08-18T20:30:00",
"leagueName": "1. Fußball-Bundesliga 2023/2024",
"team1": {
"teamId": 134,
"teamName": "SV Werder Bremen",
"shortName": "Bremen"
},
"team2": {
"teamId": 40,
"teamName": "FC Bayern München",
"shortName": "Bayern"
}
}curl "https://api.openligadb.de/getmatchdata/bl1/2023/1"const res = await fetch("https://api.openligadb.de/getmatchdata/bl1/2023/1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.openligadb.de/getmatchdata/bl1/2023/1")
print(res.json())/getmatchdata/bl1/2023/1PROBEDCrowd-sourced football league fixtures and results, no key
/getmatchdata/bl1/2023Bl1 details by ID (example: 2023).
/getmatchdataGetmatchdata — documented GET route.
/getmatchdata/1Getmatchdata details by ID (example: 1).
/getmatchdata?limit=10Getmatchdata — documented GET route.
/getmatchdata/search?q=testSearch by query parameters.
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.
OpenLigaDB: common questions
Is OpenLigaDB free to use?
Yes — OpenLigaDB is a free health & food API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does OpenLigaDB need an API key?
No — OpenLigaDB needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call OpenLigaDB from the browser?
Yes — OpenLigaDB 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 OpenLigaDB up right now?
As of our last scheduled check, OpenLigaDB is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.