0
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