faceit_getChampionshipMatches
Retrieve all matches of a championship with optional filtering by type and pagination. Use to page through upcoming, ongoing, or past matches.
Instructions
Retrieve all matches of a championship
Use to page through matches of a known championship. For a flat list of finished-match results (winners only) use getChampionshipResults.
Endpoint: GET /championships/{championship_id}/matches
Parameters:
championship_id (path, str, required): The id of the championship
type (query, str | None): Kind of matches to return. Can be all(default), upcoming, ongoing or past One of: 'all', 'upcoming', 'ongoing', 'past'.
offset (query, int | None (min 0)): The starting item position
limit (query, int | None (min 1, max 100)): The number of items to return
Returns: Matches list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| championship_id | Yes | ||
| type | No | ||
| offset | No | ||
| limit | No |