faceit_searchPlayers
Search FACEIT players by fuzzy nickname. Filter by game, country, and paginate to find matching profiles.
Instructions
Search for players
Use for fuzzy nickname search. Prefer getPlayerFromLookup when the nickname is exact, or getPlayer when you already have the player_id.
Endpoint: GET /search/players
Parameters:
nickname (query, str, required): The nickname of a player on FACEIT
game (query, str | None): A game on FACEIT
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: List of players
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nickname | Yes | ||
| game | No | ||
| country | No | ||
| offset | No | ||
| limit | No |