ValorantTeamsService
A list of all methods in the ValorantTeamsService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
get_valorant_teams | List teams for the Valorant videogame |
get_valorant_teams
List teams for the Valorant videogame
- HTTP Method:
GET
- Endpoint:
/valorant/teams
Parameters
Name | Type | Required | Description |
---|---|---|---|
filter | FilterOverValorantTeams | ❌ | Options to filter results. String fields are case sensitive For more information on filtering, see docs. |
range | RangeOverValorantTeams | ❌ | 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 | SearchOverValorantTeams | ❌ | 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 FilterOverValorantTeams, RangeOverValorantTeams, SearchOverValorantTeams
sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverValorantTeams(
acronym=[
"laborum sit"
],
id_=[
7
],
location=[
"ipsum"
],
modified_at=[
"cupidatat"
],
name=[
"proident in c"
],
slug=[
"hk-_38"
],
videogame_id=[
1
]
)
range=RangeOverValorantTeams(
acronym=[
"aute "
],
id_=[
4
],
location=[
"elit sed"
],
modified_at=[
"mollit aliqua s"
],
name=[
"cillum eius"
],
slug=[
"3js6_bh"
]
)
sort=[
""
]
search=SearchOverValorantTeams(
acronym="sunt do",
location="Excepteur",
name="irure do id",
slug="z"
)
page=1
result = sdk.valorant_teams.get_valorant_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