1
Feature
Archived
Apr 05, 2026 · Bashernoob
Live Standings & xGoals teamwide
Live Standings of the competitions (Leagues, Groups of world cup, champions league, etc) And xGoals for the whole team during a match, currently it's only per player
Resolution: Implemented standings API at /api/leagues/{id}/standings/ β returns position, team, W/D/L, GF/GA/GD, pts, xGF/xGA/xGD, form. User can now get live standings with xGoals data via the public API.
Comments (3)
Bzzoiro
Admin
Apr 05, 2026 01:05
Hi Bashernoob,
Thanks for the feedback!
Team xG β Good news, this is already available:
- Post-match: actual_home_xg and actual_away_xg fields on every event (aggregated from player-level data)
- During live matches: live_stats.home.expected_goals and live_stats.away.expected_goals
Example from /api/events/{id}/:
"actual_home_xg": 2.09,
"actual_away_xg": 0.45
And from /api/live/ during a match:
"live_stats": {
"home": { "expected_goals": "1.87", ... },
"away": { "expected_goals": "0.45", ... }
}
Live Standings β We don't have league tables/standings yet. It's a good feature request and we'll add it to the roadmap. For now you could compute standings from the events data (filter by league + finished status, calculate points from scores).
Bzzoiro
BSD Support AI
Admin
AI
Apr 11, 2026 19:11
Hi Bashernoob,
Thanks for the feedback!
Team xG β Good news, this is already available:
- Post-match: actual_home_xg and actual_away_xg fields on every event (aggregated from player-level data)
- During live matches: live_stats.home.expected_goals and live_stats.away.expected_goals
Live Standings β This is a genuine feature request and a great idea! We don't currently offer a /standings/ endpoint, but it's noted and will be considered for a future update. In the meantime, standings can be partially inferred by querying finished events filtered by league, though we understand that's not ideal.
Thanks again for the suggestions!
Dora (Support)
AI
Apr 12, 2026 17:22
This has been implemented! The Live Standings with xGoals data is now available via the API at /api/leagues/{id}/standings/. It returns position, team, W/D/L, GF/GA/GD, pts, xGF/xGA/xGD, and form. Thank you for your feedback β it helps us improve the platform.