Skip to main content

LoLWildRiftPlayersService

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

MethodsDescription
get_lol_wild_rift_playersList players for the LoL Wild Rift videogame

get_lol_wild_rift_players

List players for the LoL Wild Rift videogame

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

Parameters

NameTypeRequiredDescription
filterFilterOverLolWildRiftPlayersOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLolWildRiftPlayersOptions 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.
searchSearchOverLolWildRiftPlayersOptions 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[Player]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLolWildRiftPlayers, RangeOverLolWildRiftPlayers, SearchOverLolWildRiftPlayers

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLolWildRiftPlayers(
active=True,
birthday=[
"pariatur"
],
first_name=[
"dolor tem"
],
id_=[
2
],
last_name=[
"commodo elit "
],
modified_at=[
"quis ea la"
],
name=[
"nostrud ullamc"
],
nationality=[
"deser"
],
role=[
"amet ipsum"
],
slug=[
"6"
],
team_id=[
2
],
videogame_id=[
1
]
)
range=RangeOverLolWildRiftPlayers(
birthday=[
"dolore cup"
],
first_name=[
"in quis"
],
id_=[
7
],
last_name=[
"esteu"
],
modified_at=[
"et culpa"
],
name=[
"minim"
],
nationality=[
"tempor a"
],
role=[
"sint ni"
],
slug=[
"rvnd_hqn"
]
)
sort=[
""
]
search=SearchOverLolWildRiftPlayers(
birthday="paria",
first_name="ullamco",
last_name="sunt si",
name="ullamc",
nationality="irure m",
role="repre",
slug="0nw"
)
page=1

result = sdk.lo_l_wild_rift_players.get_lol_wild_rift_players(
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 →