Matches Players Statistics
This endpoint allows you to retrieve the players statistics from matches.
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 minute. Recommended Calls: Limit calls to 1 every minute.
Use Cases
Get player statistics from a specific match_idhttps://american-football.sportdevs.com/matches-players-statistics?match_id=eq.{match_id}
Get the best player from a specific match_idhttps://american-football.sportdevs.com/matches-players-statistics?match_id=eq.{match_id}&order=rating.desc&limit=1
Get player statistics from a specific match_id and team_idhttps://american-football.sportdevs.com/matches-players-statistics?match_id=eq.{match_id}&team_id=eq.{team_id}
Get player statistics from a specific match_id, team_id and player_idhttps://american-football.sportdevs.com/matches-players-statistics?match_id=eq.{match_id}&team_id=eq.{team_id}&player_id=eq.{player_id}
Query Parameters
- match_id integer
Default value:
eq.6
The id of the match
- team_id integer
Default value:
eq.47434
The id of the team
- player_id integer
Default value:
eq.90707
The id of the player
- 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
- team_id integer
The id of the team
Note: This is a Foreign Key to
teams.id
. - player_id integer
The id of the player
Note: This is a Foreign Key to
players.id
. - position text
The position of the player
- kicking_extra_made integer
The number of kicking extra made by the player
- kicking_extra_attempts integer
The number of kicking extra attempts made by the player
- kicking_fg_attempts integer
The number of kicking fg attempts made by the player
- kicking_fg_made integer
The number of kicking fg made by the player
- kicking_fg_long integer
The number of kicking fg long made by the player
- defensive_combine_tackles integer
The number of defensive combine tackles made by the player
- defensive_assist_tackles integer
The number of defensive assist tackles made by the player
- defensive_sacks integer
The number of defensive sacks made by the player
- defensive_forced_fumbles integer
The number of defensive forced fumbles made by the player
- defensive_interceptions integer
The number of defensive interceptions made by the player
- defensive_passes_defensed integer
The number of defensive passes defensed by the player
- punt_returns_total integer
The number of punt returns total made by the player
- punt_returns_yards integer
The number of punt returns yards made by the player
- punt_returns_long integer
The number of punt returns long made by the player
- receiving_touchdowns integer
The number of receiving touchdowns made by the player
- receiving_receptions integer
The number of receiving receptions made by the player
- receiving_yards integer
The number of receiving yards made by the player
- receiving_longest integer
The number of receiving longest made by the player
- receiving_yards_per_reception integer
The number of receiving yards per reception made by the player
- passing_attempts integer
The number of passing attempts made by the player
- passing_completions integer
The number of passing completions made by the player
- passing_yards integer
The number of passing yards made by the player
- passing_net_yards integer
The number of passing net yards made by the player
- passing_interceptions integer
The number of passing interceptions made by the player
- passing_longest integer
The number of passing longest made by the player
- passing_sacked integer
The number of passing sacked made by the player
- passing_touchdowns integer
The number of passing touchdowns made by the player
- rushing_attempts integer
The number of rushing attempts made by the player
- rushing_yards integer
The number of rushing yards made by the player
- rushing_touchdowns integer
The number of rushing touchdowns made by the player
- rushing_longest integer
The number of rushing longest made by the player
- passing_yards_per_attempt integer
The number of passing yards per attempt made by the player
- rushing_yards_per_attempt integer
The number of rushing yards per attempt made by the player
[
{
"match_id": 6,
"team_id": 47434,
"player_id": 90707,
"position": "QB",
"passing_attempts": 27,
"passing_completions": 20,
"passing_yards": 238,
"passing_net_yards": 216,
"passing_interceptions": 0,
"passing_longest": 47,
"passing_sacked": 4,
"passing_touchdowns": 1,
"rushing_attempts": 11,
"rushing_yards": 18,
"rushing_touchdowns": 2,
"rushing_longest": 18,
"passing_yards_per_attempt": 9,
"rushing_yards_per_attempt": 2
}
]