FIFA WORLD CUP 2026
Group AMexico·Czechia·South Africa·South KoreaGroup BBosnia & Herzegovina·Canada·Qatar·SwitzerlandGroup CBrazil·Haiti·Morocco·ScotlandGroup DAustralia·Paraguay·Türkiye·USAGroup ECuraçao·Ecuador·Germany·Côte d'IvoireGroup FJapan·Netherlands·Sweden·TunisiaGroup GBelgium·Egypt·Iran·New ZealandGroup HCabo Verde·Saudi Arabia·Spain·UruguayGroup IFrance·Iraq·Norway·SenegalGroup JAlgeria·Argentina·Austria·JordanGroup KColombia·DR Congo·Portugal·UzbekistanGroup LCroatia·England·Ghana·Panama Group AMexico·Czechia·South Africa·South KoreaGroup BBosnia & Herzegovina·Canada·Qatar·SwitzerlandGroup CBrazil·Haiti·Morocco·ScotlandGroup DAustralia·Paraguay·Türkiye·USAGroup ECuraçao·Ecuador·Germany·Côte d'IvoireGroup FJapan·Netherlands·Sweden·TunisiaGroup GBelgium·Egypt·Iran·New ZealandGroup HCabo Verde·Saudi Arabia·Spain·UruguayGroup IFrance·Iraq·Norway·SenegalGroup JAlgeria·Argentina·Austria·JordanGroup KColombia·DR Congo·Portugal·UzbekistanGroup LCroatia·England·Ghana·Panama
Open full hub →
Growing Discord community — direct access to the developer, live coverage & picks. Join the Discord Join now →
This is an archived ticket from the old feedback page. New support tickets are now handled on our support portal. Open a new ticket →
Bug Archived Apr 05, 2026 · Artonis

Missing HT results

Half-time scores are missing from the JSON results. Even though I have enabled the option to fetch this data, I have never actually received a half-time score. Out of curiosity, I checked the raw JSON output, and there are no "*-ht" entries (fields) at all. There is a Barcelona match currently in progress (second half), and here is what the API is showing: "name": "Barcelona", "short_name": "Barcelona", "country": "Spain" }, "event_date": "2026-04-04T21:00:00+02:00", "status": "2nd_half", "home_score": 1, "away_score": 1, "current_minute": 56, "period": "2T", "incidents": [

Comments (1)
Bzzoiro Admin Apr 05, 2026 01:01
Hi Artonis, You were right — HT scores were available on /api/events/{id}/ but were missing from /api/live/. Just fixed it. Now both endpoints return home_score_ht and away_score_ht. They appear from halftime onwards (null during 1st half since HT hasn't happened yet). Example during 2nd half or after FT: "home_score": 2, "away_score": 1, "home_score_ht": 1, "away_score_ht": 0, The HT scores are derived from goal incidents (goals with minute <= 45+). If a match has no incidents data yet, they'll be null. Thanks for reporting this! Bzzoiro