faceit_getChampionships
Retrieve championships for a given game, with optional filters for upcoming, ongoing, or past events.
Instructions
Retrieve all championships of a game
Use when listing all championships for a given game, optionally filtered by status (upcoming/ongoing/past). For free-text search by championship name use searchChampionships instead.
Endpoint: GET /championships
Parameters:
game (query, str, required): The id of the game
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 10)): The number of items to return
Returns: Championships list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| game | Yes | ||
| type | No | ||
| offset | No | ||
| limit | No |