faceit_getPlayerHistory
Retrieve a player's match history filtered by game and time range, with pagination. Returns metadata for each match.
Instructions
Retrieve all matches of a player
Use to list matches a player has played across a time window (offset/limit, from/to UNIX seconds). Returns match metadata, not stats; pair with getMatchStats for per-match detail.
Endpoint: GET /players/{player_id}/history
Parameters:
player_id (path, str, required): The id of the player
game (query, str, required): A game on FACEIT
from_ (query, int | None (min 0)): The timestamp (Unix time) as lower bound of the query. 1 month ago if not specified
to (query, int | None (min 0)): The timestamp (Unix time) as higher bound of the query. Current timestamp if not specified
offset (query, int | None (min 0, max 1000)): The starting item position
limit (query, int | None (min 1, max 100)): The number of items to return
Returns: Player matches list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| player_id | Yes | ||
| game | Yes | ||
| from_ | No | ||
| to | No | ||
| offset | No | ||
| limit | No |