Skip to main content

LoLWildRiftTournamentsService

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

MethodsDescription
get_lol_wild_rift_tournamentsList tournaments for the LoL Wild Rift videogame
get_lol_wild_rift_tournaments_pastList past LoL Wild Rift tournaments
get_lol_wild_rift_tournaments_runningList running LoL Wild Rift tournaments
get_lol_wild_rift_tournaments_upcomingList upcoming LoL Wild Rift tournaments

get_lol_wild_rift_tournaments

List tournaments for the LoL Wild Rift videogame

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

Parameters

NameTypeRequiredDescription
filterFilterOverLolWildRiftShortTournamentsOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLolWildRiftShortTournamentsOptions 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.
searchSearchOverLolWildRiftShortTournamentsOptions 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[ShortTournament]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLolWildRiftShortTournaments, RangeOverLolWildRiftShortTournaments, SearchOverLolWildRiftShortTournaments

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLolWildRiftShortTournaments(
begin_at=[
"ex"
],
detailed_stats=True,
end_at=[
"ipsu"
],
has_bracket=False,
id_=[
2
],
live_supported=True,
modified_at=[
"aliqua dol"
],
name=[
"fugiat de"
],
prizepool=[
"ipsum"
],
serie_id=[
6
],
slug=[
"_5i7"
],
tier=[
"a"
],
videogame_title=[
10
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverLolWildRiftShortTournaments(
begin_at=[
"culpa vol"
],
detailed_stats=[
False
],
end_at=[
"sit"
],
has_bracket=[
True
],
id_=[
1
],
modified_at=[
"s"
],
name=[
"ullamco magna "
],
prizepool=[
"dolor in"
],
serie_id=[
4
],
slug=[
"_acxcod3epr"
],
tier=[
"a"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverLolWildRiftShortTournaments(
name="cillum",
prizepool="cillum aliqu",
slug="omd-",
tier="a",
winner_type="Player"
)
page=1

result = sdk.lo_l_wild_rift_tournaments.get_lol_wild_rift_tournaments(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_lol_wild_rift_tournaments_past

List past LoL Wild Rift tournaments

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

Parameters

NameTypeRequiredDescription
filterFilterOverLolWildRiftShortTournamentsOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLolWildRiftShortTournamentsOptions 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.
searchSearchOverLolWildRiftShortTournamentsOptions 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[ShortTournament]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLolWildRiftShortTournaments, RangeOverLolWildRiftShortTournaments, SearchOverLolWildRiftShortTournaments

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLolWildRiftShortTournaments(
begin_at=[
"ex"
],
detailed_stats=True,
end_at=[
"ipsu"
],
has_bracket=False,
id_=[
2
],
live_supported=True,
modified_at=[
"aliqua dol"
],
name=[
"fugiat de"
],
prizepool=[
"ipsum"
],
serie_id=[
6
],
slug=[
"_5i7"
],
tier=[
"a"
],
videogame_title=[
10
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverLolWildRiftShortTournaments(
begin_at=[
"culpa vol"
],
detailed_stats=[
False
],
end_at=[
"sit"
],
has_bracket=[
True
],
id_=[
1
],
modified_at=[
"s"
],
name=[
"ullamco magna "
],
prizepool=[
"dolor in"
],
serie_id=[
4
],
slug=[
"_acxcod3epr"
],
tier=[
"a"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverLolWildRiftShortTournaments(
name="cillum",
prizepool="cillum aliqu",
slug="omd-",
tier="a",
winner_type="Player"
)
page=1

result = sdk.lo_l_wild_rift_tournaments.get_lol_wild_rift_tournaments_past(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_lol_wild_rift_tournaments_running

List running LoL Wild Rift tournaments

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

Parameters

NameTypeRequiredDescription
filterFilterOverLolWildRiftShortTournamentsOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLolWildRiftShortTournamentsOptions 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.
searchSearchOverLolWildRiftShortTournamentsOptions 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[ShortTournament]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLolWildRiftShortTournaments, RangeOverLolWildRiftShortTournaments, SearchOverLolWildRiftShortTournaments

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLolWildRiftShortTournaments(
begin_at=[
"ex"
],
detailed_stats=True,
end_at=[
"ipsu"
],
has_bracket=False,
id_=[
2
],
live_supported=True,
modified_at=[
"aliqua dol"
],
name=[
"fugiat de"
],
prizepool=[
"ipsum"
],
serie_id=[
6
],
slug=[
"_5i7"
],
tier=[
"a"
],
videogame_title=[
10
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverLolWildRiftShortTournaments(
begin_at=[
"culpa vol"
],
detailed_stats=[
False
],
end_at=[
"sit"
],
has_bracket=[
True
],
id_=[
1
],
modified_at=[
"s"
],
name=[
"ullamco magna "
],
prizepool=[
"dolor in"
],
serie_id=[
4
],
slug=[
"_acxcod3epr"
],
tier=[
"a"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverLolWildRiftShortTournaments(
name="cillum",
prizepool="cillum aliqu",
slug="omd-",
tier="a",
winner_type="Player"
)
page=1

result = sdk.lo_l_wild_rift_tournaments.get_lol_wild_rift_tournaments_running(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_lol_wild_rift_tournaments_upcoming

List upcoming LoL Wild Rift tournaments

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

Parameters

NameTypeRequiredDescription
filterFilterOverLolWildRiftShortTournamentsOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLolWildRiftShortTournamentsOptions 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.
searchSearchOverLolWildRiftShortTournamentsOptions 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[ShortTournament]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLolWildRiftShortTournaments, RangeOverLolWildRiftShortTournaments, SearchOverLolWildRiftShortTournaments

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLolWildRiftShortTournaments(
begin_at=[
"ex"
],
detailed_stats=True,
end_at=[
"ipsu"
],
has_bracket=False,
id_=[
2
],
live_supported=True,
modified_at=[
"aliqua dol"
],
name=[
"fugiat de"
],
prizepool=[
"ipsum"
],
serie_id=[
6
],
slug=[
"_5i7"
],
tier=[
"a"
],
videogame_title=[
10
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverLolWildRiftShortTournaments(
begin_at=[
"culpa vol"
],
detailed_stats=[
False
],
end_at=[
"sit"
],
has_bracket=[
True
],
id_=[
1
],
modified_at=[
"s"
],
name=[
"ullamco magna "
],
prizepool=[
"dolor in"
],
serie_id=[
4
],
slug=[
"_acxcod3epr"
],
tier=[
"a"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverLolWildRiftShortTournaments(
name="cillum",
prizepool="cillum aliqu",
slug="omd-",
tier="a",
winner_type="Player"
)
page=1

result = sdk.lo_l_wild_rift_tournaments.get_lol_wild_rift_tournaments_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 →