Lodol Docs

Riot Games

API actions for the Riot Games integration.

Riot Games

Query League of Legends player profiles, ranked stats, and match history using a Riot Games API key.


Get match details

Retrieve metadata and participants for a specific match ID.

Parameters

ParameterTypeRequiredDescription
regionstringYesRegional routing host to query (e.g., americas, europe).
match_idstringYesMatch ID to fetch details for.

Response

{}

Get ranked entries

Fetch ranked league entries for a summoner ID in a region.

Parameters

ParameterTypeRequiredDescription
regionstringYesPlatform region to query (e.g., na1, euw1).
summoner_idstringYesEncrypted summoner ID to fetch ranked stats for.

Response

[
  {}
]

Get summoner by name

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

Parameters

ParameterTypeRequiredDescription
regionstringYesPlatform region to query (e.g., na1, euw1).
summoner_namestringYesSummoner name to look up.

Response

{}

List recent matches

List recent match IDs for a player PUUID in a region.

Parameters

ParameterTypeRequiredDescription
regionstringYesRegional routing host to query (e.g., americas, europe).
puuidstringYesEncrypted player universal unique ID (PUUID).
startnumberNoMatch list start index (0+).
countnumberNoNumber of matches to return (1-100).

Response

[
  "mock_value"
]

On this page