This function fetches detailed information for a Fantasy Premier League entry given the entry ID(s).

get_entry(entryid = NULL)

Arguments

entryid

The entry ID(s). Can be found on the FPL website under 'Gameweek history' in the URL - https://fantasy.premierleague.com/entry/XXXXXX/history.

Examples

get_entry(1076)
#> $id #> [1] 1076 #> #> $joined_time #> [1] "2021-06-22T11:12:20.747384Z" #> #> $started_event #> [1] 1 #> #> $favourite_team #> [1] 1 #> #> $player_first_name #> [1] "Marijn" #> #> $player_last_name #> [1] "Sanders" #> #> $player_region_id #> [1] 152 #> #> $player_region_name #> [1] "Netherlands" #> #> $player_region_iso_code_short #> [1] "NL" #> #> $player_region_iso_code_long #> [1] "NLD" #> #> $summary_overall_points #> [1] 0 #> #> $summary_overall_rank #> [1] 3700472 #> #> $summary_event_points #> [1] 0 #> #> $summary_event_rank #> [1] 3700473 #> #> $current_event #> [1] 1 #> #> $leagues #> $leagues$classic #> id name short_name created #> 1 1 Arsenal team-1 2021-06-22T10:37:32.859343Z #> 2 172 Netherlands region-152 2021-06-22T10:37:36.662258Z #> 3 276 Gameweek 1 event-1 2021-06-22T10:37:38.853542Z #> 4 314 Overall overall 2021-06-22T10:37:39.651966Z #> 5 395 youtube.com/letstalkfpl <NA> 2021-06-22T11:12:58.817636Z #> 6 1609 @FPLHINTS (No Room for Racism) <NA> 2021-06-22T11:18:54.850817Z #> 7 18666 FPLSwedes league <NA> 2021-06-22T13:03:13.551965Z #> 8 1498714 Randolph FPL 21-22 <NA> 2021-08-13T15:23:40.116381Z #> 9 1540279 Reev League <NA> 2021-08-13T16:04:37.699514Z #> closed rank max_entries league_type scoring admin_entry start_event #> 1 FALSE NA NA s c NA 1 #> 2 FALSE NA NA s c NA 1 #> 3 FALSE NA NA s c NA 1 #> 4 FALSE NA NA s c NA 1 #> 5 FALSE NA NA x c 2 1 #> 6 FALSE NA NA x c 651 1 #> 7 FALSE NA NA x c 289 1 #> 8 FALSE NA NA x c 6013728 1 #> 9 FALSE NA NA x c 306084 1 #> entry_can_leave entry_can_admin entry_can_invite has_cup cup_league #> 1 FALSE FALSE FALSE FALSE NA #> 2 FALSE FALSE FALSE FALSE NA #> 3 FALSE FALSE FALSE FALSE NA #> 4 FALSE FALSE FALSE FALSE NA #> 5 TRUE FALSE FALSE FALSE NA #> 6 TRUE FALSE FALSE FALSE NA #> 7 TRUE FALSE FALSE FALSE NA #> 8 TRUE FALSE FALSE TRUE NA #> 9 TRUE FALSE FALSE FALSE NA #> cup_qualified entry_rank entry_last_rank #> 1 NA 583038 0 #> 2 NA 12982 0 #> 3 NA 3700469 0 #> 4 NA 3700472 0 #> 5 NA 46558 0 #> 6 NA 13900 0 #> 7 NA 1744 0 #> 8 NA 901 0 #> 9 NA 988 0 #> #> $leagues$h2h #> list() #> #> $leagues$cup #> $leagues$cup$matches #> list() #> #> $leagues$cup$status #> $leagues$cup$status$qualification_event #> [1] 16 #> #> $leagues$cup$status$qualification_numbers #> [1] 4194304 #> #> $leagues$cup$status$qualification_rank #> NULL #> #> $leagues$cup$status$qualification_state #> [1] "NOT_STARTED" #> #> #> $leagues$cup$cup_league #> [1] 315 #> #> #> #> $name #> [1] "BoomSakaLaca" #> #> $name_change_blocked #> [1] FALSE #> #> $kit #> [1] "{\"kit_shirt_type\":\"plain\",\"kit_shirt_base\":\"#cce792\",\"kit_shirt_sleeves\":\"#E1E1E1\",\"kit_shirt_secondary\":\"#E1E1E1\",\"kit_shirt_logo\":\"none\",\"kit_shorts\":\"#E1E1E1\",\"kit_socks_type\":\"plain\",\"kit_socks_base\":\"#E1E1E1\",\"kit_socks_secondary\":\"#E1E1E1\"}" #> #> $last_deadline_bank #> [1] 0 #> #> $last_deadline_value #> [1] 1000 #> #> $last_deadline_total_transfers #> [1] 0 #>