Skip to main content

LoLSeriesService

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

MethodsDescription
get_lol_seriesList series for the League of Legends videogame
get_lol_series_pastList past League of Legends series
get_lol_series_runningList running League of Legends series
get_lol_series_upcomingList upcoming League of Legends series

get_lol_series

List series for the League of Legends videogame

  • HTTP Method: GET
  • Endpoint: /lol/series

Parameters

NameTypeRequiredDescription
filterFilterOverLoLSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLoLSeriesOptions 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.
searchSearchOverLoLSeriesOptions 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[Serie]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLoLSeries, RangeOverLoLSeries, SearchOverLoLSeries

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLoLSeries(
begin_at=[
"nisi amet"
],
end_at=[
"reprehen"
],
id_=[
7
],
league_id=[
2
],
modified_at=[
"Ut "
],
name=[
"sintmoll"
],
season=[
"ad aliqua in"
],
slug=[
"1br98fc"
],
videogame_title=[
9
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
range=RangeOverLoLSeries(
begin_at=[
"sint co"
],
end_at=[
"tempor esse co"
],
id_=[
7
],
league_id=[
3
],
modified_at=[
"E"
],
name=[
"eliti"
],
season=[
"labore exercita"
],
slug=[
"93mxp18t"
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
sort=[
""
]
search=SearchOverLoLSeries(
name="mollit p",
season="exerc",
slug="wm55",
winner_type="Player"
)
page=1

result = sdk.lo_l_series.get_lol_series(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_lol_series_past

List past League of Legends series

  • HTTP Method: GET
  • Endpoint: /lol/series/past

Parameters

NameTypeRequiredDescription
filterFilterOverLoLSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLoLSeriesOptions 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.
searchSearchOverLoLSeriesOptions 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[Serie]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLoLSeries, RangeOverLoLSeries, SearchOverLoLSeries

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLoLSeries(
begin_at=[
"nisi amet"
],
end_at=[
"reprehen"
],
id_=[
7
],
league_id=[
2
],
modified_at=[
"Ut "
],
name=[
"sintmoll"
],
season=[
"ad aliqua in"
],
slug=[
"1br98fc"
],
videogame_title=[
9
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
range=RangeOverLoLSeries(
begin_at=[
"sint co"
],
end_at=[
"tempor esse co"
],
id_=[
7
],
league_id=[
3
],
modified_at=[
"E"
],
name=[
"eliti"
],
season=[
"labore exercita"
],
slug=[
"93mxp18t"
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
sort=[
""
]
search=SearchOverLoLSeries(
name="mollit p",
season="exerc",
slug="wm55",
winner_type="Player"
)
page=1

result = sdk.lo_l_series.get_lol_series_past(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_lol_series_running

List running League of Legends series

  • HTTP Method: GET
  • Endpoint: /lol/series/running

Parameters

NameTypeRequiredDescription
filterFilterOverLoLSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLoLSeriesOptions 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.
searchSearchOverLoLSeriesOptions 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[Serie]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLoLSeries, RangeOverLoLSeries, SearchOverLoLSeries

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLoLSeries(
begin_at=[
"nisi amet"
],
end_at=[
"reprehen"
],
id_=[
7
],
league_id=[
2
],
modified_at=[
"Ut "
],
name=[
"sintmoll"
],
season=[
"ad aliqua in"
],
slug=[
"1br98fc"
],
videogame_title=[
9
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
range=RangeOverLoLSeries(
begin_at=[
"sint co"
],
end_at=[
"tempor esse co"
],
id_=[
7
],
league_id=[
3
],
modified_at=[
"E"
],
name=[
"eliti"
],
season=[
"labore exercita"
],
slug=[
"93mxp18t"
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
sort=[
""
]
search=SearchOverLoLSeries(
name="mollit p",
season="exerc",
slug="wm55",
winner_type="Player"
)
page=1

result = sdk.lo_l_series.get_lol_series_running(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_lol_series_upcoming

List upcoming League of Legends series

  • HTTP Method: GET
  • Endpoint: /lol/series/upcoming

Parameters

NameTypeRequiredDescription
filterFilterOverLoLSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverLoLSeriesOptions 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.
searchSearchOverLoLSeriesOptions 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[Serie]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverLoLSeries, RangeOverLoLSeries, SearchOverLoLSeries

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverLoLSeries(
begin_at=[
"nisi amet"
],
end_at=[
"reprehen"
],
id_=[
7
],
league_id=[
2
],
modified_at=[
"Ut "
],
name=[
"sintmoll"
],
season=[
"ad aliqua in"
],
slug=[
"1br98fc"
],
videogame_title=[
9
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
range=RangeOverLoLSeries(
begin_at=[
"sint co"
],
end_at=[
"tempor esse co"
],
id_=[
7
],
league_id=[
3
],
modified_at=[
"E"
],
name=[
"eliti"
],
season=[
"labore exercita"
],
slug=[
"93mxp18t"
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
sort=[
""
]
search=SearchOverLoLSeries(
name="mollit p",
season="exerc",
slug="wm55",
winner_type="Player"
)
page=1

result = sdk.lo_l_series.get_lol_series_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 →