get_ladder_ids {SC2API} | R Documentation |
League Ladder ID's
Description
Provides ladder ID's for all divisions in a league's tiers.
Usage
get_ladder_ids(season_id, queue_id, team_type, league_id, host_region)
Arguments
season_id |
A numeric argument indicating a particular ladder season. Currently, league data is only available for season 28 and higher (i.e. data prior to this season is inaccessible). |
queue_id |
|
team_type |
|
league_id |
|
host_region |
The host region that the API call will be sent to. For |
Value
List of ladder ID's separated by tier. For grandmaster league, an integer is returned.
Note
Data is only available for season 28 and higher.
References
Examples
# Get all ladder ID's for Season 35, LotV 2v2, randomly gathered teams,
# Bronze league, Korean region.
try({
data <- get_ladder_ids(season_id = 35,
queue_id = 202,
team_type = 1,
league_id = 0,
host_region = "kr")
})