faceit_getGlobalRanking
Retrieve global ranking for a game in a specific region. Supports pagination and optional country filter.
Instructions
Retrieve global ranking of a game
Use for a page of the global game/region leaderboard. For where a specific player sits use getPlayerRanking (id) or pass player_id to this tool to center the page on them.
Endpoint: GET /rankings/games/{game_id}/regions/{region}
Parameters:
game_id (path, str, required): The id of the game
region (path, str, required): A region of a game
country (query, str | None): A country code (ISO 3166-1)
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: Ranking
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| game_id | Yes | ||
| region | Yes | ||
| country | No | ||
| offset | No | ||
| limit | No |