Skip to main content

ValorantPlayersService

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

MethodsDescription
get_valorant_playersList players for the Valorant videogame

get_valorant_players

List players for the Valorant videogame

  • HTTP Method: GET
  • Endpoint: /valorant/players

Parameters

NameTypeRequiredDescription
filterFilterOverValorantPlayersOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverValorantPlayersOptions 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.
searchSearchOverValorantPlayersOptions 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 FilterOverValorantPlayers, RangeOverValorantPlayers, SearchOverValorantPlayers

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverValorantPlayers(
active=False,
birthday=[
"laboris"
],
first_name=[
"tempor"
],
id_=[
2
],
last_name=[
"veniam"
],
modified_at=[
"Duis ex"
],
name=[
"incididunt "
],
nationality=[
"dolore"
],
role=[
"aliqu"
],
slug=[
"y"
],
team_id=[
2
],
videogame_id=[
1
]
)
range=RangeOverValorantPlayers(
birthday=[
"exercit"
],
first_name=[
"inExce"
],
id_=[
8
],
last_name=[
"Lorem labor"
],
modified_at=[
"elit id l"
],
name=[
"irure incid"
],
nationality=[
"ullamco "
],
role=[
"fugiat labo"
],
slug=[
"o"
]
)
sort=[
""
]
search=SearchOverValorantPlayers(
birthday="ea moll",
first_name="officia nulla",
last_name="labore eiu",
name="anim eu",
nationality="aliqua dolor",
role="consequat ",
slug="ybj02j05"
)
page=1

result = sdk.valorant_players.get_valorant_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 →