Matches Players Statistics
Matches Players Statistics
Query Parameters
- match_id integerExample: eq.660
- team_id integerExample: eq.3826
- player_id integerExample: eq.2899
- offset string
Default value:
0Limiting and Pagination
Example: 0 - limit string
Default value:
50Limiting and Pagination
Example: 50 - lang string
Default value:
enMulti-language
Example: en
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema array
- match_id integer
- team_id integer
Note: This is a Foreign Key to
teams.id. - player_id integer
Note: This is a Foreign Key to
players.id. - position text
- assists integer
- goals integer
- shots integer
- hits integer
- takeaways integer
- giveaways integer
- blocked integer
- plus_minus integer
- seconds_played integer
- penalty_minutes integer
- power_play_goals integer
- power_play_assists integer
- face_off_wins integer
- face_off_taken integer
- short_handed_goals integer
- short_handed_assists integer
[
{
"match_id": 660,
"team_id": 3826,
"player_id": 2899,
"position": "C",
"assists": 0,
"goals": 0,
"shots": 3,
"hits": 0,
"takeaways": 0,
"giveaways": 0,
"blocked": 1,
"plus_minus": -1,
"seconds_played": 1011,
"penalty_minutes": 0,
"power_play_goals": 0,
"power_play_assists": 0,
"face_off_wins": 6,
"face_off_taken": 14,
"short_handed_goals": 0,
"short_handed_assists": 0
}
]
Loading...