Skip to contents

Get a list of all available tournaments for a given year.

Usage

list_tournaments(year, tour = "pga")

Arguments

year

Season year (e.g., 2025)

tour

Tour name: "pga" (default), "liv", "lpga", "euro", or "champions".

Value

Tibble with event_id, tournament_name, start_date, end_date

Examples

# \donttest{
# See all 2025 PGA tournaments
list_tournaments(2025)
#> # A tibble: 49 × 4
#>    event_id  tournament_name                               start_date end_date  
#>    <chr>     <chr>                                         <date>     <date>    
#>  1 401703489 The Sentry                                    2025-01-02 2025-01-05
#>  2 401703490 Sony Open in Hawaii                           2025-01-09 2025-01-12
#>  3 401703491 The American Express                          2025-01-16 2025-01-19
#>  4 401703492 Farmers Insurance Open                        2025-01-22 2025-01-25
#>  5 401703493 AT&T Pebble Beach Pro-Am                      2025-01-30 2025-02-02
#>  6 401703494 WM Phoenix Open                               2025-02-06 2025-02-09
#>  7 401703495 The Genesis Invitational                      2025-02-13 2025-02-16
#>  8 401703496 Mexico Open at VidantaWorld                   2025-02-20 2025-02-23
#>  9 401703497 Cognizant Classic in The Palm Beaches         2025-02-27 2025-03-02
#> 10 401703498 Arnold Palmer Invitational pres. by Masterca… 2025-03-06 2025-03-09
#> # ℹ 39 more rows

# See LIV Golf schedule
list_tournaments(2026, tour = "liv")
#> # A tibble: 15 × 4
#>    event_id  tournament_name                 start_date end_date  
#>    <chr>     <chr>                           <date>     <date>    
#>  1 401807532 LIV Golf Riyadh                 2026-02-04 2026-02-07
#>  2 401804701 LIV Golf Adelaide               2026-02-12 2026-02-15
#>  3 401824806 LIV Golf Hong Kong              2026-03-05 2026-03-08
#>  4 401806356 LIV Golf Singapore              2026-03-12 2026-03-15
#>  5 401805587 LIV Golf South Africa           2026-03-19 2026-03-22
#>  6 401805795 LIV Golf Mexico City            2026-04-16 2026-04-19
#>  7 401808353 LIV Golf Virginia               2026-05-07 2026-05-10
#>  8 401863937 LIV Golf Korea                  2026-05-28 2026-05-31
#>  9 401809165 LIV Golf Andalucía              2026-06-04 2026-06-07
#> 10 401817380 LIV Golf Louisiana              2026-06-25 2026-06-28
#> 11 401804745 LIV Golf United Kingdom         2026-07-23 2026-07-26
#> 12 401858200 LIV Golf New York               2026-08-06 2026-08-09
#> 13 401811430 LIV Golf Indianapolis           2026-08-20 2026-08-23
#> 14 401843581 LIV Golf Michigan - Match Play  2026-08-27 2026-08-29
#> 15 401843582 LIV Golf Michigan - Stroke Play 2026-08-30 2026-08-30
# }