Skip to main content

StarCraft2TeamsService

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

MethodsDescription
get_starcraft_2_teamsList teams for the StarCraft 2 videogame

get_starcraft_2_teams

List teams for the StarCraft 2 videogame

  • HTTP Method: GET
  • Endpoint: /starcraft-2/teams

Parameters

NameTypeRequiredDescription
filterFilterOverStarcraft2TeamsOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverStarcraft2TeamsOptions 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.
searchSearchOverStarcraft2TeamsOptions 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[Team]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverStarcraft2Teams, RangeOverStarcraft2Teams, SearchOverStarcraft2Teams

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverStarcraft2Teams(
acronym=[
"sint n"
],
id_=[
2
],
location=[
"esse "
],
modified_at=[
"ut amet"
],
name=[
"consequ"
],
slug=[
"5nm4baxub3g"
],
videogame_id=[
1
]
)
range=RangeOverStarcraft2Teams(
acronym=[
"et aute eius"
],
id_=[
9
],
location=[
"in occ"
],
modified_at=[
"anim mo"
],
name=[
"cupidatat"
],
slug=[
"eclsej7"
]
)
sort=[
""
]
search=SearchOverStarcraft2Teams(
acronym="nisi consecte",
location="dolor cup",
name="Ut aliquip ",
slug="9ejb6qcy-q"
)
page=1

result = sdk.star_craft_2_teams.get_starcraft_2_teams(
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 →