Prefer to chat? Query the API with natural language using our AI Skill →
Give your AI tool live Cito endpoint context before you write integration code.
Public docs assistant
Tell Cito API what you are building.
Get endpoint recommendations, exact requests, code snippets, and a free-key CTA without digging through every page.
Rocket League API
Planned 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.
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/livePlanned live RLCS match feed
GET
/api/v1/rocket-league/matches/{id}Planned match detail endpoint
GET
/api/v1/rocket-league/players/{username}Planned player statistics
GET
/api/v1/rocket-league/tournamentsPlanned RLCS tournament list
GET
/api/v1/rocket-league/teamsPlanned professional team directory
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 }
}
}
}
}