Skip to main content

StarCraftBroodWarPlayersService

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

MethodsDescription
get_starcraft_brood_war_playersList players for the StarCraft Brood War videogame

get_starcraft_brood_war_players

List players for the StarCraft Brood War videogame

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

Parameters

NameTypeRequiredDescription
filterFilterOverStarcraftBroodWarPlayersOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverStarcraftBroodWarPlayersOptions 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.
searchSearchOverStarcraftBroodWarPlayersOptions 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 FilterOverStarcraftBroodWarPlayers, RangeOverStarcraftBroodWarPlayers, SearchOverStarcraftBroodWarPlayers

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverStarcraftBroodWarPlayers(
active=False,
birthday=[
"consequat "
],
first_name=[
"dolore"
],
id_=[
9
],
last_name=[
"adipi"
],
modified_at=[
"id no"
],
name=[
"ex dolor"
],
nationality=[
"ad tempor m"
],
role=[
"reprehende"
],
slug=[
"fx5dlw"
],
team_id=[
5
],
videogame_id=[
1
]
)
range=RangeOverStarcraftBroodWarPlayers(
birthday=[
"nisi adipisicin"
],
first_name=[
"voluptat"
],
id_=[
7
],
last_name=[
"proident"
],
modified_at=[
"officia id"
],
name=[
"adipisici"
],
nationality=[
"qui Ut"
],
role=[
"exercitatio"
],
slug=[
"65"
]
)
sort=[
""
]
search=SearchOverStarcraftBroodWarPlayers(
birthday="qui enim",
first_name="cillum ut temp",
last_name="pariatur fugia",
name="ullamco ",
nationality="proiden",
role="officia",
slug="fepvp"
)
page=1

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