Rocket League API
RLCS matches, player stats, and team data
COMING SOON
Rocket League API Launching Soon
We're working hard to bring you comprehensive Rocket League esports data. Be the first to know when it's ready - enter your email below.
Endpoints
GET
/v1/rl/matches/liveReturns currently active RLCS matches
GET
/v1/rl/matches/{id}Get details for a specific match
GET
/v1/rl/players/{username}Get player statistics
GET
/v1/rl/tournamentsList RLCS tournaments
GET
/v1/rl/teamsList professional teams
GET
/v1/rl/teams/{id}Get team details and roster
GET
/v1/rl/leaderboards/{playlist}Get playlist leaderboards
Live RLCS Matches
{
"data": [
{
"id": "match_rl_33445",
"tournament": "RLCS World Championship",
"region": "NA",
"teams": {
"orange": {
"name": "G2 Esports",
"score": 2,
"players": [
{
"username": "JKnaps",
"goals": 3,
"assists": 2,
"saves": 4,
"shots": 8,
"score": 720
}
]
},
"blue": {
"name": "NRG",
"score": 1,
"players": [...]
}
},
"best_of": 7,
"current_game": 4,
"status": "live"
}
]
}Player Statistics
{
"data": {
"username": "JKnaps",
"team": "G2 Esports",
"region": "NA",
"rank": "SSL",
"stats": {
"competitive": {
"goals": 847,
"assists": 423,
"saves": 512,
"shots": 2341,
"goals_per_game": 0.92,
"shooting_pct": 36.2,
"mvp_rate": 28.4
},
"ranked": {
"1v1": { "rank": "SSL", "mmr": 2147 },
"2v2": { "rank": "SSL", "mmr": 2456 },
"3v3": { "rank": "SSL", "mmr": 2234 }
}
}
}
}