Nothing
#' @title
#' **RealGM NBA Player Index**
#' @description
#' **Get the active NBA player index from
#' [RealGM](https://basketball.realgm.com).**
#'
#' Returns RealGM's roster of active NBA players, including position, listed
#' height/weight, age, current team, years of service and pre-draft team -- the
#' pre-draft / international detail RealGM is known for.
#'
#' **Requires a headless browser.** RealGM is behind a Cloudflare JavaScript
#' challenge, so the `realgm_*()` functions drive headless Chrome via the
#' optional \pkg{chromote} package (install it and Google Chrome). A plain HTTP
#' client receives an HTTP 403 challenge page.
#' @return A `hoopR_data` tibble with one row per active player:
#'
#' \if{html}{\tabular{lll}{
#' col_name \tab types \tab description \cr
#' number \tab integer \tab Row number. \cr
#' player \tab character \tab Player name. \cr
#' pos \tab character \tab Position. \cr
#' ht \tab character \tab Listed height. \cr
#' wt \tab integer \tab Listed weight (lbs). \cr
#' age \tab numeric \tab Age. \cr
#' current_team \tab character \tab Current NBA team. \cr
#' yos \tab integer \tab Years of service. \cr
#' pre_draft_team \tab character \tab Pre-draft team / school. \cr
#' draft_status \tab character \tab Draft pick / undrafted status. \cr
#' nationality \tab character \tab Player nationality. \cr
#' }}
#' \if{latex}{See the HTML help or pkgdown reference for the column table.}
#'
#' @keywords RealGM
#' @importFrom rvest read_html html_elements html_table
#' @importFrom janitor clean_names
#' @importFrom dplyr as_tibble
#' @family RealGM Functions
#' @export
#' @examples
#' \dontrun{
#' try(realgm_players())
#' }
realgm_players <- function() {
.args <- .capture_args()
df <- data.frame()
tryCatch(
expr = {
cand <- .realgm_pick(.realgm_tables(.realgm_doc("/nba/players")), must_have = "player")
if (is.null(cand)) stop("RealGM player table not found", call. = FALSE)
df <- .realgm_finish(cand, "NBA player index from basketball.realgm.com")
},
error = function(e) {
.report_api_error(e, hint = "Invalid arguments or no RealGM player data available!", args = .args)
},
warning = function(w) {
.report_api_warning(w, hint = "Warning fetching RealGM players", args = .args)
},
finally = {
}
)
return(df)
}
#' @title
#' **RealGM NBA Players Abroad**
#' @description
#' **Get the list of NBA-affiliated players currently playing overseas from
#' [RealGM](https://basketball.realgm.com).**
#'
#' RealGM tracks NBA draft picks, two-way and free-agent players who are on
#' international rosters -- a view no first-party NBA/ESPN endpoint provides.
#'
#' **Requires a headless browser** (see [realgm_players()]).
#' @return A `hoopR_data` tibble with one row per player:
#'
#' \if{html}{\tabular{lll}{
#' col_name \tab types \tab description \cr
#' player \tab character \tab Player name. \cr
#' pos \tab character \tab Position. \cr
#' ht \tab character \tab Listed height. \cr
#' wt \tab integer \tab Listed weight (lbs). \cr
#' nba_status \tab character \tab NBA contract / rights status. \cr
#' team_s \tab character \tab Current overseas team(s) and NBA affiliation. \cr
#' gp \tab integer \tab Games played. \cr
#' mpg \tab numeric \tab Minutes per game. \cr
#' ppg \tab numeric \tab Points per game. \cr
#' rpg \tab numeric \tab Rebounds per game. \cr
#' apg \tab numeric \tab Assists per game. \cr
#' }}
#' \if{latex}{See the HTML help or pkgdown reference for the column table.}
#'
#' @keywords RealGM
#' @importFrom rvest read_html html_elements html_table
#' @importFrom janitor clean_names
#' @importFrom dplyr as_tibble
#' @family RealGM Functions
#' @export
#' @examples
#' \dontrun{
#' try(realgm_players_abroad())
#' }
realgm_players_abroad <- function() {
.args <- .capture_args()
df <- data.frame()
tryCatch(
expr = {
cand <- .realgm_pick(.realgm_tables(.realgm_doc("/nba/players-abroad")),
must_have = c("player", "nba_status"))
if (is.null(cand)) stop("RealGM players-abroad table not found", call. = FALSE)
df <- .realgm_finish(cand, "NBA players abroad from basketball.realgm.com")
},
error = function(e) {
.report_api_error(e, hint = "No RealGM players-abroad data available!", args = .args)
},
warning = function(w) {
.report_api_warning(w, hint = "Warning fetching RealGM players abroad", args = .args)
},
finally = {
}
)
return(df)
}
#' @title
#' **RealGM Future NBA Free Agents**
#' @description
#' **Get RealGM's projected future NBA free-agent class from
#' [RealGM](https://basketball.realgm.com).**
#'
#' One row per upcoming free agent, including the free-agency season, the
#' player's Bird/veteran free-agent status, recent production and -- distinctively
#' -- the player's listed agent.
#'
#' **Requires a headless browser** (see [realgm_players()]).
#' @return A `hoopR_data` tibble with one row per future free agent:
#'
#' \if{html}{\tabular{lll}{
#' col_name \tab types \tab description \cr
#' player \tab character \tab Player name. \cr
#' pos \tab character \tab Position. \cr
#' team \tab character \tab Current team abbreviation. \cr
#' season \tab character \tab Free-agency season (e.g. \code{2026-2027}). \cr
#' age \tab integer \tab Age. \cr
#' yos \tab integer \tab Years of service. \cr
#' veteran_fa_status \tab character \tab Bird / Non-Bird / veteran FA status. \cr
#' gp \tab integer \tab Games played. \cr
#' pts \tab numeric \tab Points per game. \cr
#' reb \tab numeric \tab Rebounds per game. \cr
#' ast \tab numeric \tab Assists per game. \cr
#' per \tab numeric \tab Player Efficiency Rating. \cr
#' agent \tab character \tab Listed player agent. \cr
#' }}
#' \if{latex}{See the HTML help or pkgdown reference for the column table.}
#'
#' @keywords RealGM
#' @importFrom rvest read_html html_elements html_table
#' @importFrom janitor clean_names
#' @importFrom dplyr as_tibble
#' @family RealGM Functions
#' @export
#' @examples
#' \dontrun{
#' try(realgm_future_free_agents())
#' }
realgm_future_free_agents <- function() {
.args <- .capture_args()
df <- data.frame()
tryCatch(
expr = {
cand <- .realgm_pick(.realgm_tables(.realgm_doc("/nba/future_free_agents")),
must_have = c("player", "agent"))
if (is.null(cand)) stop("RealGM future-free-agents table not found", call. = FALSE)
df <- .realgm_finish(cand, "Future NBA free agents from basketball.realgm.com")
},
error = function(e) {
.report_api_error(e, hint = "No RealGM future-free-agent data available!", args = .args)
},
warning = function(w) {
.report_api_warning(w, hint = "Warning fetching RealGM future free agents", args = .args)
},
finally = {
}
)
return(df)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.