Skip to main content

ValorantMapsService

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

MethodsDescription
get_valorant_mapsList maps
get_valorant_maps_valorant_map_idGet a Valorant map by its ID

get_valorant_maps

List maps

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

Parameters

NameTypeRequiredDescription
filterFilterOverValorantMapsOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverValorantMapsOptions 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.
searchSearchOverValorantMapsOptions 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[ValorantMap]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverValorantMaps, RangeOverValorantMaps, SearchOverValorantMaps

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverValorantMaps(
id_=[
7
],
name=[
"ex eu in amet m"
],
slug=[
"gp"
],
videogame_version=""
)
range=RangeOverValorantMaps(
id_=[
9
],
name=[
"in eiusmod"
],
slug=[
"poql9y"
]
)
sort=[
""
]
search=SearchOverValorantMaps(
name="ullamco conse",
slug="duug0"
)
page=1

result = sdk.valorant_maps.get_valorant_maps(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_valorant_maps_valorant_map_id

Get a Valorant map by its ID

  • HTTP Method: GET
  • Endpoint: /valorant/maps/{valorant_map_id}

Parameters

NameTypeRequiredDescription
valorant_map_idintID of the Valorant map

Return Type

ValorantMap

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)

result = sdk.valorant_maps.get_valorant_maps_valorant_map_id(valorant_map_id=5)

print(result)

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →