Skip to main content

StarCraftBroodWarMatchesService

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

MethodsDescription
get_starcraft_brood_war_matchesList matches for the StarCraft Brood War videogame
get_starcraft_brood_war_matches_pastList past StarCraft Brood War matches
get_starcraft_brood_war_matches_runningList running StarCraft Brood War matches
get_starcraft_brood_war_matches_upcomingList upcoming StarCraft Brood War matches

get_starcraft_brood_war_matches

List matches for the StarCraft Brood War videogame

  • HTTP Method: GET
  • Endpoint: /starcraft-brood-war/matches

Parameters

NameTypeRequiredDescription
filterFilterOverStarcraftBroodWarMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverStarcraftBroodWarMatchesOptions 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.
searchSearchOverStarcraftBroodWarMatchesOptions 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 FilterOverStarcraftBroodWarMatches, RangeOverStarcraftBroodWarMatches, SearchOverStarcraftBroodWarMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverStarcraftBroodWarMatches(
begin_at=[
"eu exe"
],
detailed_stats=True,
draw=True,
end_at=[
"irure lab"
],
finished=True,
forfeit=False,
future=False,
id_=[
7
],
league_id=[
1
],
match_type=[
"all_games_played"
],
modified_at=[
"exercita"
],
name=[
"Lorem "
],
not_started=False,
number_of_games=[
0
],
opponent_id=[
10
],
opponents_filled=True,
past=True,
running=False,
scheduled_at=[
"sed culpa la"
],
serie_id=[
3
],
slug=[
"UDtH"
],
status=[
"canceled"
],
tournament_id=[
9
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
7
],
videogame_version=[
"36795.89.22961879"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverStarcraftBroodWarMatches(
begin_at=[
"Duis incididu"
],
detailed_stats=[
True
],
draw=[
False
],
end_at=[
"ex do cupi"
],
forfeit=[
False
],
id_=[
6
],
match_type=[
"all_games_played"
],
modified_at=[
"aliqu"
],
name=[
"in no"
],
number_of_games=[
0
],
scheduled_at=[
"elit nisi"
],
slug=[
"EZr49Ap-"
],
status=[
"canceled"
],
tournament_id=[
5
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverStarcraftBroodWarMatches(
match_type="all_games_played",
name="dolor ut enim",
slug="KpN_Jh",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.star_craft_brood_war_matches.get_starcraft_brood_war_matches(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_starcraft_brood_war_matches_past

List past StarCraft Brood War matches

  • HTTP Method: GET
  • Endpoint: /starcraft-brood-war/matches/past

Parameters

NameTypeRequiredDescription
filterFilterOverStarcraftBroodWarMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverStarcraftBroodWarMatchesOptions 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.
searchSearchOverStarcraftBroodWarMatchesOptions 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 FilterOverStarcraftBroodWarMatches, RangeOverStarcraftBroodWarMatches, SearchOverStarcraftBroodWarMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverStarcraftBroodWarMatches(
begin_at=[
"eu exe"
],
detailed_stats=True,
draw=True,
end_at=[
"irure lab"
],
finished=True,
forfeit=False,
future=False,
id_=[
7
],
league_id=[
1
],
match_type=[
"all_games_played"
],
modified_at=[
"exercita"
],
name=[
"Lorem "
],
not_started=False,
number_of_games=[
0
],
opponent_id=[
10
],
opponents_filled=True,
past=True,
running=False,
scheduled_at=[
"sed culpa la"
],
serie_id=[
3
],
slug=[
"UDtH"
],
status=[
"canceled"
],
tournament_id=[
9
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
7
],
videogame_version=[
"36795.89.22961879"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverStarcraftBroodWarMatches(
begin_at=[
"Duis incididu"
],
detailed_stats=[
True
],
draw=[
False
],
end_at=[
"ex do cupi"
],
forfeit=[
False
],
id_=[
6
],
match_type=[
"all_games_played"
],
modified_at=[
"aliqu"
],
name=[
"in no"
],
number_of_games=[
0
],
scheduled_at=[
"elit nisi"
],
slug=[
"EZr49Ap-"
],
status=[
"canceled"
],
tournament_id=[
5
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverStarcraftBroodWarMatches(
match_type="all_games_played",
name="dolor ut enim",
slug="KpN_Jh",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.star_craft_brood_war_matches.get_starcraft_brood_war_matches_past(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_starcraft_brood_war_matches_running

List running StarCraft Brood War matches

  • HTTP Method: GET
  • Endpoint: /starcraft-brood-war/matches/running

Parameters

NameTypeRequiredDescription
filterFilterOverStarcraftBroodWarMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverStarcraftBroodWarMatchesOptions 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.
searchSearchOverStarcraftBroodWarMatchesOptions 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 FilterOverStarcraftBroodWarMatches, RangeOverStarcraftBroodWarMatches, SearchOverStarcraftBroodWarMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverStarcraftBroodWarMatches(
begin_at=[
"eu exe"
],
detailed_stats=True,
draw=True,
end_at=[
"irure lab"
],
finished=True,
forfeit=False,
future=False,
id_=[
7
],
league_id=[
1
],
match_type=[
"all_games_played"
],
modified_at=[
"exercita"
],
name=[
"Lorem "
],
not_started=False,
number_of_games=[
0
],
opponent_id=[
10
],
opponents_filled=True,
past=True,
running=False,
scheduled_at=[
"sed culpa la"
],
serie_id=[
3
],
slug=[
"UDtH"
],
status=[
"canceled"
],
tournament_id=[
9
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
7
],
videogame_version=[
"36795.89.22961879"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverStarcraftBroodWarMatches(
begin_at=[
"Duis incididu"
],
detailed_stats=[
True
],
draw=[
False
],
end_at=[
"ex do cupi"
],
forfeit=[
False
],
id_=[
6
],
match_type=[
"all_games_played"
],
modified_at=[
"aliqu"
],
name=[
"in no"
],
number_of_games=[
0
],
scheduled_at=[
"elit nisi"
],
slug=[
"EZr49Ap-"
],
status=[
"canceled"
],
tournament_id=[
5
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverStarcraftBroodWarMatches(
match_type="all_games_played",
name="dolor ut enim",
slug="KpN_Jh",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.star_craft_brood_war_matches.get_starcraft_brood_war_matches_running(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_starcraft_brood_war_matches_upcoming

List upcoming StarCraft Brood War matches

  • HTTP Method: GET
  • Endpoint: /starcraft-brood-war/matches/upcoming

Parameters

NameTypeRequiredDescription
filterFilterOverStarcraftBroodWarMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverStarcraftBroodWarMatchesOptions 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.
searchSearchOverStarcraftBroodWarMatchesOptions 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 FilterOverStarcraftBroodWarMatches, RangeOverStarcraftBroodWarMatches, SearchOverStarcraftBroodWarMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverStarcraftBroodWarMatches(
begin_at=[
"eu exe"
],
detailed_stats=True,
draw=True,
end_at=[
"irure lab"
],
finished=True,
forfeit=False,
future=False,
id_=[
7
],
league_id=[
1
],
match_type=[
"all_games_played"
],
modified_at=[
"exercita"
],
name=[
"Lorem "
],
not_started=False,
number_of_games=[
0
],
opponent_id=[
10
],
opponents_filled=True,
past=True,
running=False,
scheduled_at=[
"sed culpa la"
],
serie_id=[
3
],
slug=[
"UDtH"
],
status=[
"canceled"
],
tournament_id=[
9
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
7
],
videogame_version=[
"36795.89.22961879"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverStarcraftBroodWarMatches(
begin_at=[
"Duis incididu"
],
detailed_stats=[
True
],
draw=[
False
],
end_at=[
"ex do cupi"
],
forfeit=[
False
],
id_=[
6
],
match_type=[
"all_games_played"
],
modified_at=[
"aliqu"
],
name=[
"in no"
],
number_of_games=[
0
],
scheduled_at=[
"elit nisi"
],
slug=[
"EZr49Ap-"
],
status=[
"canceled"
],
tournament_id=[
5
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverStarcraftBroodWarMatches(
match_type="all_games_played",
name="dolor ut enim",
slug="KpN_Jh",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.star_craft_brood_war_matches.get_starcraft_brood_war_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 →