The Goalkeeper resources provide access to individual statistical data related to goalkeeping actions in a football match.
The Goalkeeper/Actions subresource allows you to access individual statistical data on in-match actions made by a goalkeeper in a football match. If lineupID is passed, it returns statistical data for a player in the match lineup that lineupID corresponds to.
If query parameters are passed to the resource, it returns the players in the match lineup who match the specified filters.
Response Parameters:
Field | Type | Description |
---|---|---|
lineup | integer | The unique ID of the player in match lineup. |
catches | integer | Total number of balls caught and held by goalkeeper. |
punches | integer | Total number of balls punched away by goalkeeper. |
drops | integer | Total number of catchable balls dropped by goalkeeper. |
crosses_noclaim | integer | Total number of crosses that were not caught or punched by goalkeeper. |
distrib_success | integer | Total number of passes by goalkeeper that were controlled by a teammate. |
distrib_failure | integer | Total number of passes by goalkeeper that were not controlled by a teammate. |
The Goals subresource allows you to access individual statistical data on goals allowed by a goalkeeper in a football match. If lineupID is passed, it returns statistical data for a player in the match lineup that lineupID corresponds to.
If query parameters are passed to the resource, it returns the players in the match lineup who match the specified filters.
Response Parameters:
Field | Type | Description |
---|---|---|
lineup | integer | The unique ID of the player in match lineup. |
insidebox | integer | Number of goals conceded that were taken inside penalty area. |
outsidebox | integer | Number of goals conceded that were taken outside penalty area. |
is_cleansheet | boolean | Did player kept a clean sheet (i.e. did not concede a goal in the match)? |
The Shots subresource allows you to access individual statistical data on shots faced by a goalkeeper in a football match. If lineupID is passed, it returns statistical data for a player in the match lineup that lineupID corresponds to.
If query parameters are passed to the resource, it returns the players in the match lineup who match the specified filters.
Response Parameters:
Field | Type | Description |
---|---|---|
lineup | integer | The unique ID of the player in match lineup. |
insidebox | integer | Number of shots faced that were taken inside penalty area. |
outsidebox | integer | Number of shots faced that were taken outside penalty area. |
bigchances | integer | Number of shots faced that represented a clear goalscoring chance. |
The Saves subresource allows you to access individual statistical data on saves made by a goalkeeper in a football match. If lineupID is passed, it returns statistical data for a player in the match lineup that lineupID corresponds to.
If query parameters are passed to the resource, it returns the players in the match lineup who match the specified filters.
Response Parameters:
Field | Type | Description |
---|---|---|
lineup | integer | The unique ID of the player in match lineup. |
insidebox | integer | Number of saved shots that were taken inside penalty area. |
outsidebox | integer | Number of saved shots that were taken outside penalty area. |
penalty | integer | Number of saved penalty shots. |