get_player_events
Retrieve a player's scheduled and completed events with pagination and date filters. Provide player_id from search_players to get results.
Instructions
List a player's events (schedule/results), paginated by id (after_id). Defaults to ±30 days around today when no date filter is given. Resolve player_id via search_players first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | End date YYYY-MM-DD. | |
| from | No | Start date YYYY-MM-DD. | |
| limit | No | Max events to return per page. | |
| status | No | Filter to events in this status. | |
| after_id | No | Cursor: last event id from the previous page's next_after_id. | |
| player_id | Yes | Player id, from search_players. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Events in the same shape as list_events' EventSummary. | |
| has_more | No | ||
| player_id | No | ||
| next_after_id | No | Pass as after_id to fetch the next page; null on the last page. |