Skip to main content

SeriesService

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

MethodsDescription
get_seriesList series
get_series_pastList past series
get_series_runningList currently running series
get_series_upcomingList upcoming series
get_series_serie_id_or_slugGet a single serie by ID or by slug
get_series_serie_id_or_slug_matchesList matches of the given serie
get_series_serie_id_or_slug_matches_pastList past matches for the given serie
get_series_serie_id_or_slug_matches_runningList currently running matches for the given serie
get_series_serie_id_or_slug_matches_upcomingList upcoming matches for the given serie
get_series_serie_id_or_slug_tournamentsList tournaments of the given serie

get_series

List series

  • HTTP Method: GET
  • Endpoint: /series

Parameters

NameTypeRequiredDescription
filterFilterOverSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverSeriesOptions 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.
searchSearchOverSeriesOptions 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 FilterOverSeries, RangeOverSeries, SearchOverSeries

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverSeries(
begin_at=[
"sunt cillum dol"
],
end_at=[
"dolor"
],
id_=[
5
],
league_id=[
7
],
modified_at=[
"deserunt"
],
name=[
"laboris"
],
season=[
"proident"
],
slug=[
"_9"
],
videogame_title=[
7
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
range=RangeOverSeries(
begin_at=[
"sint c"
],
end_at=[
"ex dolore tempo"
],
id_=[
6
],
league_id=[
6
],
modified_at=[
"lab"
],
name=[
"animea labore e"
],
season=[
"ipsum i"
],
slug=[
"8"
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
sort=[
""
]
search=SearchOverSeries(
name="fugia",
season="aute al",
slug="cc3u_",
winner_type="Player"
)
page=1

result = sdk.series.get_series(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_series_past

List past series

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

Parameters

NameTypeRequiredDescription
filterFilterOverSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverSeriesOptions 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.
searchSearchOverSeriesOptions 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 FilterOverSeries, RangeOverSeries, SearchOverSeries

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverSeries(
begin_at=[
"sunt cillum dol"
],
end_at=[
"dolor"
],
id_=[
5
],
league_id=[
7
],
modified_at=[
"deserunt"
],
name=[
"laboris"
],
season=[
"proident"
],
slug=[
"_9"
],
videogame_title=[
7
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
range=RangeOverSeries(
begin_at=[
"sint c"
],
end_at=[
"ex dolore tempo"
],
id_=[
6
],
league_id=[
6
],
modified_at=[
"lab"
],
name=[
"animea labore e"
],
season=[
"ipsum i"
],
slug=[
"8"
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
sort=[
""
]
search=SearchOverSeries(
name="fugia",
season="aute al",
slug="cc3u_",
winner_type="Player"
)
page=1

result = sdk.series.get_series_past(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_series_running

List currently running series

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

Parameters

NameTypeRequiredDescription
filterFilterOverSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverSeriesOptions 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.
searchSearchOverSeriesOptions 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 FilterOverSeries, RangeOverSeries, SearchOverSeries

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverSeries(
begin_at=[
"sunt cillum dol"
],
end_at=[
"dolor"
],
id_=[
5
],
league_id=[
7
],
modified_at=[
"deserunt"
],
name=[
"laboris"
],
season=[
"proident"
],
slug=[
"_9"
],
videogame_title=[
7
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
range=RangeOverSeries(
begin_at=[
"sint c"
],
end_at=[
"ex dolore tempo"
],
id_=[
6
],
league_id=[
6
],
modified_at=[
"lab"
],
name=[
"animea labore e"
],
season=[
"ipsum i"
],
slug=[
"8"
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
sort=[
""
]
search=SearchOverSeries(
name="fugia",
season="aute al",
slug="cc3u_",
winner_type="Player"
)
page=1

result = sdk.series.get_series_running(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_series_upcoming

List upcoming series

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

Parameters

NameTypeRequiredDescription
filterFilterOverSeriesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverSeriesOptions 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.
searchSearchOverSeriesOptions 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 FilterOverSeries, RangeOverSeries, SearchOverSeries

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverSeries(
begin_at=[
"sunt cillum dol"
],
end_at=[
"dolor"
],
id_=[
5
],
league_id=[
7
],
modified_at=[
"deserunt"
],
name=[
"laboris"
],
season=[
"proident"
],
slug=[
"_9"
],
videogame_title=[
7
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
range=RangeOverSeries(
begin_at=[
"sint c"
],
end_at=[
"ex dolore tempo"
],
id_=[
6
],
league_id=[
6
],
modified_at=[
"lab"
],
name=[
"animea labore e"
],
season=[
"ipsum i"
],
slug=[
"8"
],
winner_id=[
7
],
winner_type=[
"Player"
],
year=[
None
]
)
sort=[
""
]
search=SearchOverSeries(
name="fugia",
season="aute al",
slug="cc3u_",
winner_type="Player"
)
page=1

result = sdk.series.get_series_upcoming(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_series_serie_id_or_slug

Get a single serie by ID or by slug

  • HTTP Method: GET
  • Endpoint: /series/{serie_id_or_slug}

Parameters

NameTypeRequiredDescription
serie_id_or_slugSerieIdOrSlugA serie ID or slug

Return Type

Serie

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
serie_id_or_slug=10

result = sdk.series.get_series_serie_id_or_slug(serie_id_or_slug=serie_id_or_slug)

print(result)

get_series_serie_id_or_slug_matches

List matches of the given serie

  • HTTP Method: GET
  • Endpoint: /series/{serie_id_or_slug}/matches

Parameters

NameTypeRequiredDescription
serie_id_or_slugSerieIdOrSlugA serie ID or slug
filterFilterOverMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverMatchesOptions 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.
searchSearchOverMatchesOptions 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 FilterOverMatches, RangeOverMatches, SearchOverMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
serie_id_or_slug=10
filter=FilterOverMatches(
begin_at=[
"ani"
],
detailed_stats=False,
draw=False,
end_at=[
"ad ut com"
],
finished=False,
forfeit=False,
future=True,
id_=[
3
],
league_id=[
9
],
match_type=[
"all_games_played"
],
modified_at=[
"aute sit"
],
name=[
"exercitation te"
],
not_started=False,
number_of_games=[
8
],
opponent_id=[
10
],
opponents_filled=True,
past=False,
running=True,
scheduled_at=[
"esse aute n"
],
serie_id=[
10
],
slug=[
"HiGqjR9"
],
status=[
"canceled"
],
tournament_id=[
3
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
6
],
videogame_version=[
"1125897835.45"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverMatches(
begin_at=[
"al"
],
detailed_stats=[
False
],
draw=[
False
],
end_at=[
"do d"
],
forfeit=[
False
],
id_=[
6
],
match_type=[
"all_games_played"
],
modified_at=[
"dolore ve"
],
name=[
"dolore "
],
number_of_games=[
10
],
scheduled_at=[
"nisi sed aut"
],
slug=[
"bAjOZ"
],
status=[
"canceled"
],
tournament_id=[
3
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverMatches(
match_type="all_games_played",
name="nulla veniam ",
slug="WfL1ZPQ",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.series.get_series_serie_id_or_slug_matches(
serie_id_or_slug=serie_id_or_slug,
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_series_serie_id_or_slug_matches_past

List past matches for the given serie

  • HTTP Method: GET
  • Endpoint: /series/{serie_id_or_slug}/matches/past

Parameters

NameTypeRequiredDescription
serie_id_or_slugSerieIdOrSlugA serie ID or slug
filterFilterOverMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverMatchesOptions 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.
searchSearchOverMatchesOptions 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 FilterOverMatches, RangeOverMatches, SearchOverMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
serie_id_or_slug=10
filter=FilterOverMatches(
begin_at=[
"ani"
],
detailed_stats=False,
draw=False,
end_at=[
"ad ut com"
],
finished=False,
forfeit=False,
future=True,
id_=[
3
],
league_id=[
9
],
match_type=[
"all_games_played"
],
modified_at=[
"aute sit"
],
name=[
"exercitation te"
],
not_started=False,
number_of_games=[
8
],
opponent_id=[
10
],
opponents_filled=True,
past=False,
running=True,
scheduled_at=[
"esse aute n"
],
serie_id=[
10
],
slug=[
"HiGqjR9"
],
status=[
"canceled"
],
tournament_id=[
3
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
6
],
videogame_version=[
"1125897835.45"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverMatches(
begin_at=[
"al"
],
detailed_stats=[
False
],
draw=[
False
],
end_at=[
"do d"
],
forfeit=[
False
],
id_=[
6
],
match_type=[
"all_games_played"
],
modified_at=[
"dolore ve"
],
name=[
"dolore "
],
number_of_games=[
10
],
scheduled_at=[
"nisi sed aut"
],
slug=[
"bAjOZ"
],
status=[
"canceled"
],
tournament_id=[
3
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverMatches(
match_type="all_games_played",
name="nulla veniam ",
slug="WfL1ZPQ",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.series.get_series_serie_id_or_slug_matches_past(
serie_id_or_slug=serie_id_or_slug,
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_series_serie_id_or_slug_matches_running

List currently running matches for the given serie

  • HTTP Method: GET
  • Endpoint: /series/{serie_id_or_slug}/matches/running

Parameters

NameTypeRequiredDescription
serie_id_or_slugSerieIdOrSlugA serie ID or slug
filterFilterOverMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverMatchesOptions 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.
searchSearchOverMatchesOptions 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 FilterOverMatches, RangeOverMatches, SearchOverMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
serie_id_or_slug=10
filter=FilterOverMatches(
begin_at=[
"ani"
],
detailed_stats=False,
draw=False,
end_at=[
"ad ut com"
],
finished=False,
forfeit=False,
future=True,
id_=[
3
],
league_id=[
9
],
match_type=[
"all_games_played"
],
modified_at=[
"aute sit"
],
name=[
"exercitation te"
],
not_started=False,
number_of_games=[
8
],
opponent_id=[
10
],
opponents_filled=True,
past=False,
running=True,
scheduled_at=[
"esse aute n"
],
serie_id=[
10
],
slug=[
"HiGqjR9"
],
status=[
"canceled"
],
tournament_id=[
3
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
6
],
videogame_version=[
"1125897835.45"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverMatches(
begin_at=[
"al"
],
detailed_stats=[
False
],
draw=[
False
],
end_at=[
"do d"
],
forfeit=[
False
],
id_=[
6
],
match_type=[
"all_games_played"
],
modified_at=[
"dolore ve"
],
name=[
"dolore "
],
number_of_games=[
10
],
scheduled_at=[
"nisi sed aut"
],
slug=[
"bAjOZ"
],
status=[
"canceled"
],
tournament_id=[
3
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverMatches(
match_type="all_games_played",
name="nulla veniam ",
slug="WfL1ZPQ",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.series.get_series_serie_id_or_slug_matches_running(
serie_id_or_slug=serie_id_or_slug,
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_series_serie_id_or_slug_matches_upcoming

List upcoming matches for the given serie

  • HTTP Method: GET
  • Endpoint: /series/{serie_id_or_slug}/matches/upcoming

Parameters

NameTypeRequiredDescription
serie_id_or_slugSerieIdOrSlugA serie ID or slug
filterFilterOverMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverMatchesOptions 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.
searchSearchOverMatchesOptions 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 FilterOverMatches, RangeOverMatches, SearchOverMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
serie_id_or_slug=10
filter=FilterOverMatches(
begin_at=[
"ani"
],
detailed_stats=False,
draw=False,
end_at=[
"ad ut com"
],
finished=False,
forfeit=False,
future=True,
id_=[
3
],
league_id=[
9
],
match_type=[
"all_games_played"
],
modified_at=[
"aute sit"
],
name=[
"exercitation te"
],
not_started=False,
number_of_games=[
8
],
opponent_id=[
10
],
opponents_filled=True,
past=False,
running=True,
scheduled_at=[
"esse aute n"
],
serie_id=[
10
],
slug=[
"HiGqjR9"
],
status=[
"canceled"
],
tournament_id=[
3
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
6
],
videogame_version=[
"1125897835.45"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverMatches(
begin_at=[
"al"
],
detailed_stats=[
False
],
draw=[
False
],
end_at=[
"do d"
],
forfeit=[
False
],
id_=[
6
],
match_type=[
"all_games_played"
],
modified_at=[
"dolore ve"
],
name=[
"dolore "
],
number_of_games=[
10
],
scheduled_at=[
"nisi sed aut"
],
slug=[
"bAjOZ"
],
status=[
"canceled"
],
tournament_id=[
3
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverMatches(
match_type="all_games_played",
name="nulla veniam ",
slug="WfL1ZPQ",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.series.get_series_serie_id_or_slug_matches_upcoming(
serie_id_or_slug=serie_id_or_slug,
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_series_serie_id_or_slug_tournaments

List tournaments of the given serie

  • HTTP Method: GET
  • Endpoint: /series/{serie_id_or_slug}/tournaments

Parameters

NameTypeRequiredDescription
serie_id_or_slugSerieIdOrSlugA serie ID or slug
filterFilterOverShortTournamentsOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverShortTournamentsOptions 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.
searchSearchOverShortTournamentsOptions 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 FilterOverShortTournaments, RangeOverShortTournaments, SearchOverShortTournaments

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
serie_id_or_slug=10
filter=FilterOverShortTournaments(
begin_at=[
"pariat"
],
detailed_stats=True,
end_at=[
"eli"
],
has_bracket=False,
id_=[
4
],
live_supported=False,
modified_at=[
"cillu"
],
name=[
"Excepteur do"
],
prizepool=[
"in ut veniam "
],
serie_id=[
10
],
slug=[
"z160_"
],
tier=[
"a"
],
videogame_title=[
5
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverShortTournaments(
begin_at=[
"et"
],
detailed_stats=[
True
],
end_at=[
"commo"
],
has_bracket=[
False
],
id_=[
1
],
modified_at=[
"nul"
],
name=[
"enim "
],
prizepool=[
"qui ull"
],
serie_id=[
3
],
slug=[
"vyokv"
],
tier=[
"a"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverShortTournaments(
name="sunt minim",
prizepool="utid magna es",
slug="50l9n",
tier="a",
winner_type="Player"
)
page=1

result = sdk.series.get_series_serie_id_or_slug_tournaments(
serie_id_or_slug=serie_id_or_slug,
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 →