Lodol Docs

Riot Games

API actions for the Riot Games integration.

Riot Games

Look up League of Legends player profiles, ranked stats, and match history with your Riot Games API key.


Get match details

Retrieve the details and player list for a specific match.

Parameters

ParameterTypeRequiredDescription
regionstringYesRegion group to search, for example americas or europe.
match_idstringYesMatch ID to fetch details for.

Response

{}

Get ranked stats

Look up a summoner's ranked stats in a region.

Parameters

ParameterTypeRequiredDescription
regionstringYesGame server region, for example na1 or euw1.
summoner_idstringYesID of the summoner to get ranked stats for. You can get this from the Get summoner by name action.

Response

[
  {}
]

Get summoner by name

Retrieve a League of Legends summoner profile by name and region.

Parameters

ParameterTypeRequiredDescription
regionstringYesGame server region, for example na1 or euw1.
summoner_namestringYesSummoner name to look up.

Response

{}

List recent matches

List a player's recent match IDs in a region.

Parameters

ParameterTypeRequiredDescription
regionstringYesRegion group to search, for example americas or europe.
puuidstringYesThe player's unique ID (PUUID). You can get this from the Get summoner by name action.
startnumberNoWhere to start in the match list (0 or higher).
countnumberNoNumber of matches to return (1-100).

Response

[
  "mock_value"
]

On this page