Skip to main content

LoLWildRiftMatchesService

A list of all methods in the LoLWildRiftMatchesService service. Click on the method name to view detailed information about that method.

MethodsDescription
get_lol_wild_rift_matchesList matches for the LoL Wild Rift videogame
get_lol_wild_rift_matches_pastList past LoL Wild Rift matches
get_lol_wild_rift_matches_runningList running LoL Wild Rift matches
get_lol_wild_rift_matches_upcomingList upcoming LoL Wild Rift matches

get_lol_wild_rift_matches

List matches for the LoL Wild Rift videogame

  • HTTP Method: GET
  • Endpoint: /lol-wild-rift/matches

Parameters

NameTypeRequiredDescription
filterFilterOverLolWildRiftMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLolWildRiftMatchesOptions to select results within ranges
For more information on ranges, see docs.
sortList[any]Options to sort results
For more information on sorting, see docs.
searchSearchOverLolWildRiftMatchesOptions to search results
For more information on searching, see docs.
pagePagePagination in the form of page=2 or page[size]=30&page[number]=2
per_pageintEquivalent to page[size]

Return Type

List[Match]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLolWildRiftMatches, RangeOverLolWildRiftMatches, SearchOverLolWildRiftMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLolWildRiftMatches(
begin_at=[
"velit irure"
],
detailed_stats=True,
draw=True,
end_at=[
"ani"
],
finished=False,
forfeit=False,
future=False,
id_=[
10
],
league_id=[
4
],
match_type=[
"all_games_played"
],
modified_at=[
"aliquip"
],
name=[
"velit Except"
],
not_started=False,
number_of_games=[
2
],
opponent_id=[
10
],
opponents_filled=False,
past=True,
running=True,
scheduled_at=[
"aliqua ulla"
],
serie_id=[
5
],
slug=[
"REqPO"
],
status=[
"canceled"
],
tournament_id=[
4
],
unscheduled=True,
videogame=[
1
],
videogame_title=[
8
],
videogame_version=[
"156.75188480.912455326"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverLolWildRiftMatches(
begin_at=[
"qui laboris"
],
detailed_stats=[
True
],
draw=[
False
],
end_at=[
"occaecat commo"
],
forfeit=[
True
],
id_=[
1
],
match_type=[
"all_games_played"
],
modified_at=[
"ullamco ex do"
],
name=[
"dolore "
],
number_of_games=[
6
],
scheduled_at=[
"amet "
],
slug=[
"SWMMt"
],
status=[
"canceled"
],
tournament_id=[
8
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverLolWildRiftMatches(
match_type="all_games_played",
name="nostrud",
slug="P-",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.lo_l_wild_rift_matches.get_lol_wild_rift_matches(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_lol_wild_rift_matches_past

List past LoL Wild Rift matches

  • HTTP Method: GET
  • Endpoint: /lol-wild-rift/matches/past

Parameters

NameTypeRequiredDescription
filterFilterOverLolWildRiftMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLolWildRiftMatchesOptions to select results within ranges
For more information on ranges, see docs.
sortList[any]Options to sort results
For more information on sorting, see docs.
searchSearchOverLolWildRiftMatchesOptions to search results
For more information on searching, see docs.
pagePagePagination in the form of page=2 or page[size]=30&page[number]=2
per_pageintEquivalent to page[size]

Return Type

List[Match]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLolWildRiftMatches, RangeOverLolWildRiftMatches, SearchOverLolWildRiftMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLolWildRiftMatches(
begin_at=[
"velit irure"
],
detailed_stats=True,
draw=True,
end_at=[
"ani"
],
finished=False,
forfeit=False,
future=False,
id_=[
10
],
league_id=[
4
],
match_type=[
"all_games_played"
],
modified_at=[
"aliquip"
],
name=[
"velit Except"
],
not_started=False,
number_of_games=[
2
],
opponent_id=[
10
],
opponents_filled=False,
past=True,
running=True,
scheduled_at=[
"aliqua ulla"
],
serie_id=[
5
],
slug=[
"REqPO"
],
status=[
"canceled"
],
tournament_id=[
4
],
unscheduled=True,
videogame=[
1
],
videogame_title=[
8
],
videogame_version=[
"156.75188480.912455326"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverLolWildRiftMatches(
begin_at=[
"qui laboris"
],
detailed_stats=[
True
],
draw=[
False
],
end_at=[
"occaecat commo"
],
forfeit=[
True
],
id_=[
1
],
match_type=[
"all_games_played"
],
modified_at=[
"ullamco ex do"
],
name=[
"dolore "
],
number_of_games=[
6
],
scheduled_at=[
"amet "
],
slug=[
"SWMMt"
],
status=[
"canceled"
],
tournament_id=[
8
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverLolWildRiftMatches(
match_type="all_games_played",
name="nostrud",
slug="P-",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.lo_l_wild_rift_matches.get_lol_wild_rift_matches_past(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_lol_wild_rift_matches_running

List running LoL Wild Rift matches

  • HTTP Method: GET
  • Endpoint: /lol-wild-rift/matches/running

Parameters

NameTypeRequiredDescription
filterFilterOverLolWildRiftMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLolWildRiftMatchesOptions to select results within ranges
For more information on ranges, see docs.
sortList[any]Options to sort results
For more information on sorting, see docs.
searchSearchOverLolWildRiftMatchesOptions to search results
For more information on searching, see docs.
pagePagePagination in the form of page=2 or page[size]=30&page[number]=2
per_pageintEquivalent to page[size]

Return Type

List[Match]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLolWildRiftMatches, RangeOverLolWildRiftMatches, SearchOverLolWildRiftMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLolWildRiftMatches(
begin_at=[
"velit irure"
],
detailed_stats=True,
draw=True,
end_at=[
"ani"
],
finished=False,
forfeit=False,
future=False,
id_=[
10
],
league_id=[
4
],
match_type=[
"all_games_played"
],
modified_at=[
"aliquip"
],
name=[
"velit Except"
],
not_started=False,
number_of_games=[
2
],
opponent_id=[
10
],
opponents_filled=False,
past=True,
running=True,
scheduled_at=[
"aliqua ulla"
],
serie_id=[
5
],
slug=[
"REqPO"
],
status=[
"canceled"
],
tournament_id=[
4
],
unscheduled=True,
videogame=[
1
],
videogame_title=[
8
],
videogame_version=[
"156.75188480.912455326"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverLolWildRiftMatches(
begin_at=[
"qui laboris"
],
detailed_stats=[
True
],
draw=[
False
],
end_at=[
"occaecat commo"
],
forfeit=[
True
],
id_=[
1
],
match_type=[
"all_games_played"
],
modified_at=[
"ullamco ex do"
],
name=[
"dolore "
],
number_of_games=[
6
],
scheduled_at=[
"amet "
],
slug=[
"SWMMt"
],
status=[
"canceled"
],
tournament_id=[
8
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverLolWildRiftMatches(
match_type="all_games_played",
name="nostrud",
slug="P-",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.lo_l_wild_rift_matches.get_lol_wild_rift_matches_running(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_lol_wild_rift_matches_upcoming

List upcoming LoL Wild Rift matches

  • HTTP Method: GET
  • Endpoint: /lol-wild-rift/matches/upcoming

Parameters

NameTypeRequiredDescription
filterFilterOverLolWildRiftMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLolWildRiftMatchesOptions to select results within ranges
For more information on ranges, see docs.
sortList[any]Options to sort results
For more information on sorting, see docs.
searchSearchOverLolWildRiftMatchesOptions to search results
For more information on searching, see docs.
pagePagePagination in the form of page=2 or page[size]=30&page[number]=2
per_pageintEquivalent to page[size]

Return Type

List[Match]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLolWildRiftMatches, RangeOverLolWildRiftMatches, SearchOverLolWildRiftMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLolWildRiftMatches(
begin_at=[
"velit irure"
],
detailed_stats=True,
draw=True,
end_at=[
"ani"
],
finished=False,
forfeit=False,
future=False,
id_=[
10
],
league_id=[
4
],
match_type=[
"all_games_played"
],
modified_at=[
"aliquip"
],
name=[
"velit Except"
],
not_started=False,
number_of_games=[
2
],
opponent_id=[
10
],
opponents_filled=False,
past=True,
running=True,
scheduled_at=[
"aliqua ulla"
],
serie_id=[
5
],
slug=[
"REqPO"
],
status=[
"canceled"
],
tournament_id=[
4
],
unscheduled=True,
videogame=[
1
],
videogame_title=[
8
],
videogame_version=[
"156.75188480.912455326"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverLolWildRiftMatches(
begin_at=[
"qui laboris"
],
detailed_stats=[
True
],
draw=[
False
],
end_at=[
"occaecat commo"
],
forfeit=[
True
],
id_=[
1
],
match_type=[
"all_games_played"
],
modified_at=[
"ullamco ex do"
],
name=[
"dolore "
],
number_of_games=[
6
],
scheduled_at=[
"amet "
],
slug=[
"SWMMt"
],
status=[
"canceled"
],
tournament_id=[
8
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverLolWildRiftMatches(
match_type="all_games_played",
name="nostrud",
slug="P-",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.lo_l_wild_rift_matches.get_lol_wild_rift_matches_upcoming(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →