GuidesRelease Log
Coverage MatrixDocumentationChange LogLog InContact Us
Release Log

Futsal API

Support for Aggregate Scores

Release Date

Feeds Affected

Benefit

05/03/2024

Competitor Summaries

Added aggregate home and away scores for matches, including a winner_id for the winning team.

This update allows a display of aggregate scores for two-legged ties, reducing the need for manual calculation.
<sport_event_status status="closed" match_status="ended" home_score="2" away_score="2" aggregate_home_score="5" aggregate_away_score="4" aggregate_winner_id="sr:competitor:34498">
  <period_scores>
    <period_score home_score="1" away_score="0" type="regular_period" number="1"/>
    <period_score home_score="1" away_score="2" type="regular_period" number="2"/>
  </period_scores>
</sport_event_status>
"sport_event_status": {
  "status": "closed",
  "match_status": "ended",
  "home_score": 2,
  "away_score": 2,
  "period_scores": [
    {
      "home_score": 1,
      "away_score": 0,
      "type": "regular_period",
      "number": 1
    },
    {
      "home_score": 1,
      "away_score": 2,
      "type": "regular_period",
      "number": 2
    }
  ],
  "aggregate_home_score": 5,
  "aggregate_away_score": 4,
  "aggregate_winner_id": "sr:competitor:34498"
},

Update applies to: Futsal v2