CounterStrikeTeamsService
A list of all methods in the CounterStrikeTeamsService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
get_csgo_teams | List teams for the Counter-Strike videogame |
get_csgo_teams
List teams for the Counter-Strike videogame
- HTTP Method:
GET
- Endpoint:
/csgo/teams
Parameters
Name | Type | Required | Description |
---|---|---|---|
filter | FilterOverCsgoTeams | ❌ | Options to filter results. String fields are case sensitive For more information on filtering, see docs. |
range | RangeOverCsgoTeams | ❌ | Options to select results within ranges For more information on ranges, see docs. |
sort | List[any] | ❌ | Options to sort results For more information on sorting, see docs. |
search | SearchOverCsgoTeams | ❌ | Options to search results For more information on searching, see docs. |
page | Page | ❌ | Pagination in the form of page=2 or page[size]=30&page[number]=2 |
per_page | int | ❌ | Equivalent to page[size] |
Return Type
List[Team]
Example Usage Code Snippet
from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverCsgoTeams, RangeOverCsgoTeams, SearchOverCsgoTeams
sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverCsgoTeams(
acronym=[
"cupidatat v"
],
id_=[
10
],
location=[
"proide"
],
modified_at=[
"n"
],
name=[
"exmoll"
],
slug=[
"388tc6im"
],
videogame_id=[
1
]
)
range=RangeOverCsgoTeams(
acronym=[
"cupida"
],
id_=[
4
],
location=[
"officia ani"
],
modified_at=[
"pariatur"
],
name=[
"nostrud qui "
],
slug=[
"k0k91e"
]
)
sort=[
""
]
search=SearchOverCsgoTeams(
acronym="culpa labor",
location="aute mollit i",
name="sunt ad",
slug="wnj8e"
)
page=1
result = sdk.counter_strike_teams.get_csgo_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