GET_getMatch

  • Riot Documentation

  • API URL:

    https://{region}.api.riotgames.com/val/match/v1/matches/{matchId}
    

Description

Get match by id.

async def GET_getMatch(self, matchId: str, region: str) -> dict:

Arguments

  • matchId: String

  • region: String

Examples

Basic example (Just required arguments)

import valaw

client = valaw.Client("riot_api_token", "cluster")

async def func():
    match_data = await client.GET_getMatch("matchId", "region")