list_events
List sporting events with home/away teams, start time, and status. Filter by league, team, or time window, then use event IDs to fetch odds.
Instructions
List sporting events / fixtures (the spine of the API). Each event carries home/away team, start time, status and whether live odds exist (hasOdds). Filter by league, team, status or start-time window, then use the returned event id with get_event_odds. Paginate with cursor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows to return (page size). Default 50, server caps apply. | |
| cursor | No | Opaque pagination cursor. Pass the `nextCursor` from a previous response to fetch the next page. | |
| league | No | League slug (e.g. mlb, wnba, mls, pga-tour, fifa-world-cup). See list_leagues. | |
| status | No | Event status filter (e.g. scheduled, live, final). | |
| team_id | No | Filter to events involving this team UUID (from list_teams). | |
| starts_after | No | ISO-8601 timestamp; only events starting at/after this time. | |
| starts_before | No | ISO-8601 timestamp; only events starting at/before this time. |