faceit_getHubMatches
Retrieve all matches of a hub. Filter by type (upcoming, ongoing, past) and paginate results with offset and limit.
Instructions
Retrieve all matches of a hub
Use to list a hub's matches (upcoming/ongoing/past). For hub members use getHubMembers, for hub leaderboards use getHubLeaderboards.
Endpoint: GET /hubs/{hub_id}/matches
Parameters:
hub_id (path, str, required): The id of the hub
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 100)): The number of items to return
Returns: Matches list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hub_id | Yes | ||
| type | No | ||
| offset | No | ||
| limit | No |