Nothing
#' @rdname mlb_team_endpoints
#' @name mlb_team_endpoints
#' @aliases mlb_team_endpoints teams team
#' @title
#' **MLB Teams Endpoint Overview**
#' @description
#'
#' * `mlb_teams()`: MLB Teams.
#' * `mlb_team_info()`: MLB Team Info.
#' * `mlb_team_affiliates()`: MLB Team Affiliates.
#' * `mlb_team_alumni()`: MLB Team Alumni.
#' * `mlb_team_coaches()`: MLB Team Coaches.
#' * `mlb_team_history()`: MLB Teams History.
#' * `mlb_team_leaders()`: MLB Team Leaders.
#' * `mlb_team_personnel()`: MLB Team Personnel.
#' * `mlb_team_stats()`: MLB Team Individual Stats.
#' * `mlb_teams_stats()`: MLB Teams Stats.
#' * `mlb_teams_stats_leaders()`: MLB Teams Stats Leaders.
#'
#' @details
#' ## **MLB Teams**
#'
#' These functions retrieve MLB team, affiliate, alumni, coach, history, leader, personnel, and stats information from the MLB Stats API.
#'
#' @family MLB Teams
NULL
#' @title **MLB Teams**
#' @param season Year to return to return team information for.
#' @param active_status The active statuses to populate teams for a given season.
#' @param all_star_statuses The all-star statuses to populate teams for a given season.
#' @param league_ids The league_id(s) to return team information for.
#' @param sport_ids The sport_id(s) to return team information for.
#' @param game_type The game_type to return team information for.
#' @return Returns a tibble with the following columns
#'
#' |col_name |types |description |
#' |:--------------------------|:---------|:------------------------------------------|
#' |all_star_status |character |All-star status flag. |
#' |team_id |integer |Team MLBAM ID. |
#' |team_full_name |character |Full team name. |
#' |link |character |API link to the team. |
#' |season |integer |Season year. |
#' |team_code |character |Internal team code. |
#' |file_code |character |File code abbreviation. |
#' |team_abbreviation |character |Team abbreviation. |
#' |team_name |character |Short team name. |
#' |location_name |character |Team location (city). |
#' |first_year_of_play |character |First year the franchise played. |
#' |short_name |character |Short display name. |
#' |franchise_name |character |Franchise name. |
#' |club_name |character |Club name. |
#' |active |logical |Whether the team is active. |
#' |spring_league_id |integer |Spring league MLBAM ID. |
#' |spring_league_name |character |Spring league name. |
#' |spring_league_link |character |API link to the spring league. |
#' |spring_league_abbreviation |character |Spring league abbreviation. |
#' |venue_id |integer |Home venue MLBAM ID. |
#' |venue_name |character |Home venue name. |
#' |venue_link |character |API link to the venue. |
#' |spring_venue_id |integer |Spring training venue MLBAM ID. |
#' |spring_venue_link |character |API link to the spring venue. |
#' |league_id |integer |League MLBAM ID. |
#' |league_name |character |League name. |
#' |league_link |character |API link to the league. |
#' |division_id |integer |Division MLBAM ID. |
#' |division_name |character |Division name. |
#' |division_link |character |API link to the division. |
#' |sport_id |integer |Sport MLBAM ID. |
#' |sport_link |character |API link to the sport. |
#' |sport_name |character |Sport name (e.g., Major League Baseball). |
#'
#' @export
#' @examples \donttest{
#' try(mlb_teams(season = 2021, sport_ids = c(1)))
#' }
mlb_teams <- function(
season = NULL,
active_status = NULL,
all_star_statuses = NULL,
league_ids = NULL,
sport_ids = NULL,
game_type = NULL){
mlb_endpoint <- mlb_stats_endpoint("v1/teams")
query_params <- list(
season = season,
activeStatus = active_status,
allStarStatuses = all_star_statuses,
leagueIds = league_ids,
sportIds = sport_ids,
gameType = game_type
)
mlb_endpoint <- httr2::url_modify_query(mlb_endpoint, !!!query_params)
teams <- NULL
tryCatch(
expr={
resp <- mlb_endpoint |>
mlb_api_call()
teams <- jsonlite::fromJSON(jsonlite::toJSON(resp$teams),flatten = TRUE) |>
janitor::clean_names() |>
dplyr::rename(
"team_id" = "id",
"team_full_name" = "name",
"team_abbreviation" = "abbreviation") |>
make_baseballr_data("MLB Teams data from MLB.com",Sys.time())
},
error = function(e) {
cli::cli_alert_danger("{Sys.time()}: Invalid arguments provided")
},
finally = {
}
)
return(teams)
}
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.