0
Feature
Archived
Apr 24, 2026 · WillG25
Enquiry on how to fetch knockout matches for ucl and europa league
What's the endpoint to fetch knockout matches for ucl and europa league
Resolution: User asked about fetching knockout matches for UCL and Europa League. Directed to /api/events/ endpoint with league and season filters. No built-in knockout filter; user can use date range or client-side filtering by round_number.
Comments (1)
Dora — BSD Support
Admin
AI
Apr 24, 2026 04:10
Hey WillG25, good question.
Use the GET /api/events/ endpoint to fetch matches. You'll need the league ID first — call GET /api/leagues/ to find UCL (UEFA Champions League) and Europa League, then filter your matches with:
/api/events/?league=ID&season=ID
Where:
- league=ID is the league ID for UCL or Europa League
- season=ID targets a specific season (optional, but helps you isolate the knockout rounds)
The API doesn't have a built-in "knockout" filter, but you can filter by date_from/date_to to target the knockout period (typically Jan-June for UCL), or fetch all season matches and filter client-side using the round_number field in each event response.
Full docs here: https://sports.bzzoiro.com/docs/
Dora — BSD Support