Rfutbin
R package to get prices, stats and more information for FIFA Ultimate Team players in Futbin.
Install / Use
/learn @danielredondo/RfutbinREADME
rfutbin
R package to get price and stats of FIFA Ultimate Team players in Futbin for all platforms (PS4/XBox One/PC).
Installation
This package is available only on GitHub. To install it, use the
devtools package:
library(devtools)
install_github("danielredondo/rfutbin")
library(rfutbin)
Examples
Load package
library(rfutbin)
Search for a player
futbin_search(name = "Lionel Messi")
#> # A tibble: 9 x 23
#> name rating position version price skills weak_foot pac sho pas dri
#> <chr> <int> <chr> <chr> <dbl> <int> <int> <int> <int> <int> <int>
#> 1 Lione~ 99 RW Summer~ 8.53e5 4 4 96 99 98 99
#> 2 Lione~ 99 CAM Futtie~ 6.85e5 5 4 98 99 99 99
#> 3 Lione~ 98 RW TOTY 7.06e5 4 4 93 98 97 99
#> 4 Lione~ 98 ST TOTS 2.9 e5 4 4 91 99 96 99
#> 5 Lione~ 96 CF LaLiga~ 1.71e6 4 4 90 96 95 98
#> 6 Lione~ 95 CF TOTGS 9.05e4 4 4 88 95 94 97
#> 7 Lione~ 94 CF IF 1.1 e5 4 4 86 94 93 96
#> 8 Lione~ 93 RW Rare 4.58e4 4 4 85 92 91 95
#> 9 Lione~ 93 RW CL 5.2 e4 4 4 85 92 91 95
#> # ... with 12 more variables: def <int>, phy <int>, hei <chr>,
#> # popularity <int>, base_stats <int>, in_game_stats <int>, wr_attack <chr>,
#> # wr_defense <chr>, wei <chr>, team <chr>, nation <chr>, league <chr>
The default platform is PS4, but you can get the price in other platforms (XBox One/PC)
futbin_search(name = "Lionel Messi", platform = "xone")
#> # A tibble: 9 x 23
#> name rating position version price skills weak_foot pac sho pas dri
#> <chr> <int> <chr> <chr> <dbl> <int> <int> <int> <int> <int> <int>
#> 1 Lione~ 99 RW Summer~ 8.97e5 4 4 96 99 98 99
#> 2 Lione~ 99 CAM Futtie~ 7.34e5 5 4 98 99 99 99
#> 3 Lione~ 98 RW TOTY 6.45e5 4 4 93 98 97 99
#> 4 Lione~ 98 ST TOTS 3.1 e5 4 4 91 99 96 99
#> 5 Lione~ 96 CF LaLiga~ 1.59e6 4 4 90 96 95 98
#> 6 Lione~ 95 CF TOTGS 1.19e5 4 4 88 95 94 97
#> 7 Lione~ 94 CF IF 1.81e5 4 4 86 94 93 96
#> 8 Lione~ 93 RW Rare 5.1 e4 4 4 85 92 91 95
#> 9 Lione~ 93 RW CL 6.3 e4 4 4 85 92 91 95
#> # ... with 12 more variables: def <int>, phy <int>, hei <chr>,
#> # popularity <int>, base_stats <int>, in_game_stats <int>, wr_attack <chr>,
#> # wr_defense <chr>, wei <chr>, team <chr>, nation <chr>, league <chr>
futbin_search(name = "Lionel Messi", platform = "pc")
#> # A tibble: 9 x 23
#> name rating position version price skills weak_foot pac sho pas dri
#> <chr> <int> <chr> <chr> <dbl> <int> <int> <int> <int> <int> <int>
#> 1 Lione~ 99 RW Summer~ 1.5 e6 4 4 96 99 98 99
#> 2 Lione~ 99 CAM Futtie~ 7.67e5 5 4 98 99 99 99
#> 3 Lione~ 98 RW TOTY 1.24e6 4 4 93 98 97 99
#> 4 Lione~ 98 ST TOTS 3.3 e5 4 4 91 99 96 99
#> 5 Lione~ 96 CF LaLiga~ 1.93e6 4 4 90 96 95 98
#> 6 Lione~ 95 CF TOTGS 1.43e5 4 4 88 95 94 97
#> 7 Lione~ 94 CF IF 1.8 e5 4 4 86 94 93 96
#> 8 Lione~ 93 RW Rare 7.35e4 4 4 85 92 91 95
#> 9 Lione~ 93 RW CL 8.4 e4 4 4 85 92 91 95
#> # ... with 12 more variables: def <int>, phy <int>, hei <chr>,
#> # popularity <int>, base_stats <int>, in_game_stats <int>, wr_attack <chr>,
#> # wr_defense <chr>, wei <chr>, team <chr>, nation <chr>, league <chr>
Search for more than one player
futbin_search(name = c("Lionel Messi", "Cristiano Ronaldo"))
#> # A tibble: 19 x 23
#> name rating position version price skills weak_foot pac sho pas dri
#> <chr> <int> <chr> <chr> <dbl> <int> <int> <int> <int> <int> <int>
#> 1 Lion~ 99 RW Summer~ 8.53e5 4 4 96 99 98 99
#> 2 Lion~ 99 CAM Futtie~ 6.85e5 5 4 98 99 99 99
#> 3 Lion~ 98 RW TOTY 7.06e5 4 4 93 98 97 99
#> 4 Lion~ 98 ST TOTS 2.9 e5 4 4 91 99 96 99
#> 5 Lion~ 96 CF LaLiga~ 1.71e6 4 4 90 96 95 98
#> 6 Lion~ 95 CF TOTGS 9.05e4 4 4 88 95 94 97
#> 7 Lion~ 94 CF IF 1.1 e5 4 4 86 94 93 96
#> 8 Lion~ 93 RW Rare 4.58e4 4 4 85 92 91 95
#> 9 Lion~ 93 RW CL 5.2 e4 4 4 85 92 91 95
#> 10 Cris~ 99 ST Summer~ 7 e5 5 4 96 99 92 98
#> 11 Cris~ 99 ST Premiu~ 1.01e6 5 5 98 99 95 99
#> 12 Cris~ 98 ST TOTY 4.45e5 5 4 96 98 89 96
#> 13 Cris~ 98 ST TOTS 4.15e5 5 4 95 99 90 95
#> 14 Cris~ 95 ST TIF 3.1 e5 5 4 92 96 87 93
#> 15 Cris~ 94 ST SIF 9.5 e5 5 4 91 95 85 92
#> 16 Cris~ 93 ST IF 2.34e5 5 4 90 94 83 91
#> 17 Cris~ 92 ST Rare 6.15e4 5 4 89 93 81 89
#> 18 Cris~ 92 ST CL 5.9 e4 5 4 89 93 81 89
#> 19 Cris~ 87 RW Flashb~ 3.34e5 5 3 91 79 75 86
#> # ... with 12 more variables: def <int>, phy <int>, hei <chr>,
#> # popularity <int>, base_stats <int>, in_game_stats <int>, wr_attack <chr>,
#> # wr_defense <chr>, wei <chr>, team <chr>, nation <chr>, league <chr>
Search for a specific version of a player
# Lewandowski rare card
futbin_search(name = "Lewandowski", version = "Rare")
#> # A tibble: 1 x 23
#> name rating position version price skills weak_foot pac sho pas dri
#> <chr> <int> <chr> <chr> <dbl> <int> <int> <int> <int> <int> <int>
#> 1 Robert~ 91 ST Rare 25250 4 4 78 91 78 86
#> # ... with 12 more variables: def <int>, phy <int>, hei <chr>,
#> # popularity <int>, base_stats <int>, in_game_stats <int>, wr_attack <chr>,
#> # wr_defense <chr>, wei <chr>, team <chr>, nation <chr>, league <chr>
# Luis Suarez One to watch (OTW)
futbin_search(name = "Luis Suarez", version = "OTW")
#> # A tibble: 1 x 23
#> name rating position version price skills weak_foot pac sho pas dri
#> <chr> <int> <chr> <chr> <dbl> <int> <int> <int> <int> <int> <int>
#> 1 Luis S~ 90 ST OTW 31000 3 4 75 94 87 88
#> # ... with 12 more variables: def <int>, phy <int>, hei <chr>,
#> # popularity <int>, base_stats <int>, in_game_stats <int>, wr_attack <chr>,
#> # wr_defense <chr>, wei <chr>, team <chr>, nation <chr>, league <chr>
# Grealish In-Form (IF) showing verbose
futbin_search(name = "Grealish", version = "IF", verbose = TRUE)
#> [1] "Reading... https://www.futbin.com/21/players?page=1&search=grealish"
#> [1] "Player(s) found: 1"
#> # A tibble: 1 x 23
#> name rating position version price skills weak_foot pac sho pas dri
#> <chr> <int> <chr> <chr> <dbl> <int> <int> <int> <int> <int> <int>
#> 1 Jack G~ 83 LM IF 29750 4 3 80 77 84 87
#> # ... with 12 more variables: def <int>, phy <int>, hei <chr>,
#> # popularity <int>, base_stats <int>, in_game_stats <int>, wr_attack <chr>,
#> # wr_defense <chr>, wei <chr>, team <chr>, nation <chr>, league <chr>
Download all players from a Futbin webpage
# All Aston Villa players -> To get the URL, go to futbin.com/players and filter
aston_villa <- futbin_scrap(url = "https://www.futbin.com/players?page=1&club=2")
#> [1] "Reading... https://www.futbin.com/players?page=1&club=2"
#> [1] "Player(s) found: 30"
#> [1] "Reading... https://www.futbin.com/players?page=2&club=2"
#> [1] "Player(s) found: 45"
#> [1] "Reading... https://www.futbin.com/players?page=3&club=2"
#> [1] "Player(s) found: 45"
head(aston_villa)
#> # A tibble: 6 x 23
#> name rating position version price skills weak_foot pac sho pas dri
#> <chr> <int> <chr> <chr> <dbl> <int> <int> <int> <int> <int> <int>
#> 1 Jack ~ 95 LW FOF PT~ 246500 4 3 97 94 97 99
#> 2 Jack ~ 87 CAM TOTY H~ 0 4 3 85 83 89 91
#> 3 Ollie~ 84 ST SIF 35000 3 4 90 84 77 82
#> 4 Emili~ 84 GK SIF 136000 1 3 85 86 84 86
#> 5 Jack ~ 83 LM IF 29750 4 3 80 77 84 87
#> 6 Emili~ 82 GK IF 0 1 3 82 84 82 83
#> # ... with 12 more variables: def <int>, phy <int>, hei <chr>,
#> # popularity <int>, base_stats <int>, in_game_stats <int>, wr_attack <chr>,
#> # wr_defense <chr>, wei <chr>, team <chr>, nation <chr>, league <chr>
# All English players in Bundesliga -> To get the URL, go to futbin.com/players and filter
futbin_scrap(url = "https://www.futbin.com/21/players?page=1&league=19&nation=14")
#> [1] "Reading... https://www.futbin.com/21/players?page=1&leagu
Related Skills
node-connect
343.3kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
92.1kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
343.3kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
343.3kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
