Skip to main content

ValorantStatsService

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

MethodsDescription
get_valorant_matches_match_id_or_slug_players_statsGet the aggregated statistics for all players in a Valorant match
get_valorant_matches_match_id_or_slug_teams_team_id_or_slug_statsGet the aggregated team statistics for a Valorant match
get_valorant_players_player_id_or_slug_statsGet a Valorant player stats by ID or slug
get_valorant_series_serie_id_or_slug_players_player_id_or_slug_statsGet the aggregated player statistics for a Valorant series
get_valorant_series_serie_id_or_slug_teams_team_id_or_slug_statsGet the aggregated team statistics for a Valorant series
get_valorant_teams_team_id_or_slug_statsGet a Valorant team stats by ID or slug
get_valorant_tournaments_tournament_id_or_slug_players_player_id_or_slug_statsGet the aggregated player statistics for a Valorant tournament
get_valorant_tournaments_tournament_id_or_slug_teams_team_id_or_slug_statsGet the aggregated team statistics for a Valorant tournament

get_valorant_matches_match_id_or_slug_players_stats

Get the aggregated statistics for all players in a Valorant match

  • HTTP Method: GET
  • Endpoint: /valorant/matches/{match_id_or_slug}/players/stats

Parameters

NameTypeRequiredDescription
match_id_or_slugMatchIdOrSlugA match ID or slug

Return Type

ValorantStatsForPlayersByMatch

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment

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

result = sdk.valorant_stats.get_valorant_matches_match_id_or_slug_players_stats(match_id_or_slug=match_id_or_slug)

print(result)

get_valorant_matches_match_id_or_slug_teams_team_id_or_slug_stats

Get the aggregated team statistics for a Valorant match

  • HTTP Method: GET
  • Endpoint: /valorant/matches/{match_id_or_slug}/teams/{team_id_or_slug}/stats

Parameters

NameTypeRequiredDescription
match_id_or_slugMatchIdOrSlugA match ID or slug
team_id_or_slugTeamIdOrSlugA team ID or slug

Return Type

ValorantStatsForTeamByMatch

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment

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

result = sdk.valorant_stats.get_valorant_matches_match_id_or_slug_teams_team_id_or_slug_stats(
match_id_or_slug=match_id_or_slug,
team_id_or_slug=team_id_or_slug
)

print(result)

get_valorant_players_player_id_or_slug_stats

Get a Valorant player stats by ID or slug

  • HTTP Method: GET
  • Endpoint: /valorant/players/{player_id_or_slug}/stats

Parameters

NameTypeRequiredDescription
player_id_or_slugPlayerIdOrSlugA player ID or slug
videogame_versionVideogameVersionOrAll
from_strFilter out 'from' date
tostrFilter out 'to' date

Return Type

ValorantStatsForPlayer

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment

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

result = sdk.valorant_stats.get_valorant_players_player_id_or_slug_stats(
player_id_or_slug=player_id_or_slug,
videogame_version=videogame_version,
from_="2017-07-21",
to="2017-07-21"
)

print(result)

get_valorant_series_serie_id_or_slug_players_player_id_or_slug_stats

Get the aggregated player statistics for a Valorant series

  • HTTP Method: GET
  • Endpoint: /valorant/series/{serie_id_or_slug}/players/{player_id_or_slug}/stats

Parameters

NameTypeRequiredDescription
serie_id_or_slugSerieIdOrSlugA serie ID or slug
player_id_or_slugPlayerIdOrSlugA player ID or slug
videogame_versionVideogameVersionOrAll

Return Type

ValorantStatsForPlayerBySerie

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
serie_id_or_slug=10
player_id_or_slug=9
videogame_version="5.4970743709"

result = sdk.valorant_stats.get_valorant_series_serie_id_or_slug_players_player_id_or_slug_stats(
serie_id_or_slug=serie_id_or_slug,
player_id_or_slug=player_id_or_slug,
videogame_version=videogame_version
)

print(result)

get_valorant_series_serie_id_or_slug_teams_team_id_or_slug_stats

Get the aggregated team statistics for a Valorant series

  • HTTP Method: GET
  • Endpoint: /valorant/series/{serie_id_or_slug}/teams/{team_id_or_slug}/stats

Parameters

NameTypeRequiredDescription
serie_id_or_slugSerieIdOrSlugA serie ID or slug
team_id_or_slugTeamIdOrSlugA team ID or slug
videogame_versionVideogameVersionOrAll

Return Type

ValorantStatsForTeamBySerie

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
serie_id_or_slug=10
team_id_or_slug=10
videogame_version="5.4970743709"

result = sdk.valorant_stats.get_valorant_series_serie_id_or_slug_teams_team_id_or_slug_stats(
serie_id_or_slug=serie_id_or_slug,
team_id_or_slug=team_id_or_slug,
videogame_version=videogame_version
)

print(result)

get_valorant_teams_team_id_or_slug_stats

Get a Valorant team stats by ID or slug

  • HTTP Method: GET
  • Endpoint: /valorant/teams/{team_id_or_slug}/stats

Parameters

NameTypeRequiredDescription
team_id_or_slugTeamIdOrSlugA team ID or slug
videogame_versionVideogameVersionOrAll
from_strFilter out 'from' date
tostrFilter out 'to' date

Return Type

ValorantStatsForTeam

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment

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

result = sdk.valorant_stats.get_valorant_teams_team_id_or_slug_stats(
team_id_or_slug=team_id_or_slug,
videogame_version=videogame_version,
from_="2017-07-21",
to="2017-07-21"
)

print(result)

get_valorant_tournaments_tournament_id_or_slug_players_player_id_or_slug_stats

Get the aggregated player statistics for a Valorant tournament

  • HTTP Method: GET
  • Endpoint: /valorant/tournaments/{tournament_id_or_slug}/players/{player_id_or_slug}/stats

Parameters

NameTypeRequiredDescription
tournament_id_or_slugTournamentIdOrSlugA tournament ID or slug
player_id_or_slugPlayerIdOrSlugA player ID or slug
videogame_versionVideogameVersionOrAll

Return Type

ValorantStatsForPlayerByTournament

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
tournament_id_or_slug=2
player_id_or_slug=9
videogame_version="5.4970743709"

result = sdk.valorant_stats.get_valorant_tournaments_tournament_id_or_slug_players_player_id_or_slug_stats(
tournament_id_or_slug=tournament_id_or_slug,
player_id_or_slug=player_id_or_slug,
videogame_version=videogame_version
)

print(result)

get_valorant_tournaments_tournament_id_or_slug_teams_team_id_or_slug_stats

Get the aggregated team statistics for a Valorant tournament

  • HTTP Method: GET
  • Endpoint: /valorant/tournaments/{tournament_id_or_slug}/teams/{team_id_or_slug}/stats

Parameters

NameTypeRequiredDescription
tournament_id_or_slugTournamentIdOrSlugA tournament ID or slug
team_id_or_slugTeamIdOrSlugA team ID or slug
videogame_versionVideogameVersionOrAll

Return Type

ValorantStatsForTeamByTournament

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
tournament_id_or_slug=2
team_id_or_slug=10
videogame_version="5.4970743709"

result = sdk.valorant_stats.get_valorant_tournaments_tournament_id_or_slug_teams_team_id_or_slug_stats(
tournament_id_or_slug=tournament_id_or_slug,
team_id_or_slug=team_id_or_slug,
videogame_version=videogame_version
)

print(result)

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →