faceit_searchTournaments
Find FACEIT tournaments by name, with optional filters for game, region, and competition type.
Instructions
Search for tournaments
Use when you only have a (possibly partial) tournament name. Switch to getTournament once you have the tournament_id.
Endpoint: GET /search/tournaments
Parameters:
name (query, str, required): The name of a tournament on FACEIT
game (query, str | None): A game on FACEIT
region (query, str | None): A region of the game
type (query, str | None): Kind of competitions to return 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: List of tournament
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| game | No | ||
| region | No | ||
| type | No | ||
| offset | No | ||
| limit | No |