Game APIs/Rocket League API

Rocket League API

Planned RLCS matches, player stats, and team data

BASEhttps://api.citoapi.com/api/v1
Rocket 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/live
Live MatchesPlanned live RLCS match feed

Summary

Planned live RLCS match feed

REST
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

Summary

Planned match detail endpoint

REST
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

Summary

Planned player statistics

REST
curl "https://api.citoapi.com/api/v1/rocket-league/players/{username}" \
  -H "x-api-key: YOUR_API_KEY"
GET/api/v1/rocket-league/tournaments
List TournamentsPlanned RLCS tournament list

Summary

Planned RLCS tournament list

REST
curl "https://api.citoapi.com/api/v1/rocket-league/tournaments" \
  -H "x-api-key: YOUR_API_KEY"
GET/api/v1/rocket-league/teams
List TeamsPlanned professional team directory

Summary

Planned professional team directory

REST
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 }
      }
    }
  }
}