faceit_getChampionshipGroupRanking
Get the ordered ranking of a specific group within a FACEIT championship by providing the championship ID and group number. Supports pagination with offset and limit.
Instructions
Retrieve group ranking of a championship
Use when you have a championship_id and a group number and want the full ordered ranking of that group.
Endpoint: GET /leaderboards/championships/{championship_id}/groups/{group}
Parameters:
championship_id (path, str, required): The id of the championship
group (path, int, required): A group of the championship
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: Championship ranking
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| championship_id | Yes | ||
| group | Yes | ||
| offset | No | ||
| limit | No |