Match Stats
GET
The Match Stats endpoint gives you the statistics of a single event
Description
Headers | application/json |
Endpoint Example | https://api.sportdatastreamapi.com/stats/?user={USERNAME}&token={TOKEN}&t=match&id={MATCH_ID} |
Endpoint | https://api.sportdatastreamapi.com/stats/?user=null&token=null&t=match&id=15006543 |
Paginated | No, this endpoint is not paginated |
Example Response
{
"data": [
{
"team_id": 98,
"passes": {
"total": null,
"accurate": null,
"percentage": null
},
"fouls": 9,
"injuries": 3,
"corners": 4,
"offsides": 0,
"shots_blocked": 4,
"possessiontime": null,
"possessionpercent": 57,
"yellowcards": 2,
"yellowredcards": 0,
"redcards": 0,
"substitutions": 4,
"goal_kick": 7,
"goal_attempts": 7,
"free_kick": 9,
"throw_in": 15,
"ball_safe": 51,
"goals": 4,
"penalties": "0/0",
"attacks": 22,
"dangerous_attacks": 27
},
{
"team_id": 2816,
"passes": {
"total": null,
"accurate": null,
"percentage": null
},
"fouls": 9,
"injuries": 1,
"corners": 1,
"offsides": 4,
"shots_blocked": 3,
"possessiontime": null,
"possessionpercent": 43,
"yellowcards": 2,
"yellowredcards": 0,
"redcards": 0,
"substitutions": 5,
"goal_kick": 5,
"goal_attempts": 7,
"throw_in": 16,
"ball_safe": 46,
"goals": 0,
"penalties": "0/0",
"attacks": 29,
"dangerous_attacks": 25
}
],
}