Rocket League API
Planned RLCS matches, player stats, and team data
BASE
https://api.citoapi.com/api/v1Rocket League API RootAppend any endpoint path below.
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.
Planned Endpoints
These paths are not live yet. Join the waitlist above if you want early access when Rocket League coverage opens.
GET/api/v1/rocket-league/matches/liveLive MatchesPlanned live RLCS match feed
GET
/api/v1/rocket-league/matches/liveLive MatchesPlanned live RLCS match feed
curl "https://api.citoapi.com/api/v1/rocket-league/matches/live" \
-H "x-api-key: YOUR_API_KEY"GET/api/v1/rocket-league/matches/{id}IdPlanned match detail endpoint
GET
/api/v1/rocket-league/matches/{id}IdPlanned match detail endpoint
curl "https://api.citoapi.com/api/v1/rocket-league/matches/{id}" \
-H "x-api-key: YOUR_API_KEY"GET/api/v1/rocket-league/players/{username}UsernamePlanned player statistics
GET
/api/v1/rocket-league/players/{username}UsernamePlanned player statistics
curl "https://api.citoapi.com/api/v1/rocket-league/players/{username}" \
-H "x-api-key: YOUR_API_KEY"GET/api/v1/rocket-league/tournamentsList TournamentsPlanned RLCS tournament list
GET
/api/v1/rocket-league/tournamentsList TournamentsPlanned RLCS tournament list
curl "https://api.citoapi.com/api/v1/rocket-league/tournaments" \
-H "x-api-key: YOUR_API_KEY"GET/api/v1/rocket-league/teamsList TeamsPlanned professional team directory
GET
/api/v1/rocket-league/teamsList TeamsPlanned professional team directory
curl "https://api.citoapi.com/api/v1/rocket-league/teams" \
-H "x-api-key: YOUR_API_KEY"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 }
}
}
}
}