faceit_getPlayerRecentMatchStats
Retrieve per-match stats for a player in a specific game, with pagination and optional date range filtering.
Instructions
Retrieve paginated per-match statistics for a player in a specific game.
Use to page through a player's recent per-match stats for a game (returns one entry per match). For career totals use getPlayerLifetimeStats. For the timeline of matches without stats use getPlayerHistory.
Endpoint: GET /players/{player_id}/games/{game_id}/stats
Parameters:
player_id (path, str, required): The id of the player
game_id (path, str, required): A game on FACEIT
offset (query, int | None (min 0, max 200)): The starting item position
limit (query, int | None (min 1, max 100)): The number of items to return
from_ (query, int | None): Used to filter the dataset by date (minimum). Expected value is date ("items.stats.Match Finished At") in epoch milliseconds.
to (query, int | None): Used to filter the dataset by date (maximum). Expected value is date ("items.stats.Match Finished At") in epoch milliseconds.
Returns: Player stats for matches
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| player_id | Yes | ||
| game_id | Yes | ||
| offset | No | ||
| limit | No | ||
| from_ | No | ||
| to | No |