riot_api

This package provides an easy way to use Riot account api in Dart language.

If you want League of Legends api package visit here.

  • Riot account api
    • ACCOUNT-V1

Requirements

Here are what you need to use the Dart SDK:

  • Dart 2.19.0 or higher

Example

First, generate riot api key.

Initialize RiotApi with your api key.

RiotApi.init(apiKey: 'your-api-key'))

And use APIname.queryFunction form to call query function.

You can check available api.

const puuid = 'your-puuid';

// Get account information by puuid.
final user = await AccountV1.getAccountByPuuid(PlatformValues.asia, puuid);

// Get account information by gameName and tagLine.
final user2 = await AccountV1.getAccountByRiotId(PlatformValues.asia, gameName, tagLine);

Additional packages

We provide other Riot api packages:

How to Contribute

If you want to contribute to this repository:

Libraries

riot_api