Game APIs/League of Legends API

League of Legends API

LCS, LEC, LCK, LPL matches and esports data

COMING SOON

League of Legends API Launching Soon

We're working hard to bring you comprehensive League of Legends esports data. Be the first to know when it's ready - enter your email below.

Endpoints

GET/v1/lol/matches/live

Returns currently active pro matches

GET/v1/lol/matches/{id}

Get details for a specific match

GET/v1/lol/players/{username}

Get player statistics

GET/v1/lol/tournaments

List LCS/LEC/LCK/LPL tournaments

GET/v1/lol/teams

List professional teams

GET/v1/lol/teams/{id}

Get team details and roster

GET/v1/lol/champions

Get champion pick/ban rates

GET/v1/lol/leaderboards/{region}

Get ranked leaderboards

Live Pro Matches

{
  "data": [
    {
      "id": "match_lol_77889",
      "tournament": "LCS Spring Split",
      "league": "LCS",
      "teams": {
        "blue": {
          "name": "Cloud9",
          "kills": 12,
          "towers": 4,
          "dragons": 2,
          "barons": 0,
          "gold": 42500,
          "players": [
            {
              "summoner": "Berserker",
              "champion": "Jinx",
              "role": "ADC",
              "kills": 5,
              "deaths": 1,
              "assists": 3,
              "cs": 287,
              "gold": 12400
            }
          ]
        },
        "red": {
          "name": "Team Liquid",
          "kills": 8,
          "towers": 2,
          "dragons": 1,
          "barons": 0,
          "gold": 38200,
          "players": [...]
        }
      },
      "game_time": "24:32",
      "status": "live"
    }
  ]
}

Champion Meta

{
  "data": [
    {
      "champion": "Jinx",
      "role": "ADC",
      "patch": "14.2",
      "stats": {
        "pick_rate": 28.4,
        "ban_rate": 42.1,
        "win_rate": 52.3,
        "avg_kda": 4.2,
        "games_played": 847
      },
      "pro_presence": {
        "pick_rate": 35.2,
        "ban_rate": 48.7,
        "win_rate": 54.1
      }
    }
  ]
}