Matches Incidents
This endpoint allows you to retrieve the incidents from matches.
For incidents we have many types: goal
, period
.
Multi-language: This feature allows the user to manually change the language of the API response by adding value to the
lang
attribute. Example:lang=en
.
Pagination: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.
Update Period: The endpoint is updated every 10 seconds during a live match.
Recommended Calls: Limit calls to 1 per 10 seconds during a live match.
Use Cases
Get incidents from a specific match_idhttps://floorball.sportdevs.com/matches-incidents?match_id=eq.{match_id}
Query Parameters
- match_id integer
Default value:
eq.29
The id of the match
- offset string
Default value:
0
Limiting and Pagination
- limit string
Default value:
50
Limiting and Pagination
- lang string
Default value:
en
Multi-language
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema array
- match_id integer
The id of the match
Note: This is a Foreign Key to
matches-live.id
. - incidents jsonb
The incidents of the match
[
{
"match_id": 29,
"incidents": [
{
"time": -1,
"type": "goal",
"class": "regular",
"is_home": false,
"away_score": 1,
"home_score": 0
},
{
"time": -1,
"type": "goal",
"class": "regular",
"is_home": false,
"away_score": 2,
"home_score": 2
},
{
"time": -1,
"type": "goal",
"class": "regular",
"is_home": false,
"away_score": 3,
"home_score": 3
},
{
"time": -1,
"type": "goal",
"class": "regular",
"is_home": false,
"away_score": 3,
"home_score": 5
},
{
"time": -1,
"type": "goal",
"class": "regular",
"is_home": true,
"away_score": 1,
"home_score": 1
},
{
"time": -1,
"type": "goal",
"class": "regular",
"is_home": true,
"away_score": 1,
"home_score": 2
},
{
"time": -1,
"type": "goal",
"class": "regular",
"is_home": true,
"away_score": 2,
"home_score": 3
},
{
"time": -1,
"type": "goal",
"class": "regular",
"is_home": true,
"away_score": 3,
"home_score": 4
},
{
"time": -1,
"type": "goal",
"class": "regular",
"is_home": true,
"away_score": 4,
"home_score": 5
}
]
}
]