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_matchIdOrSlug_players_statsGet the aggregated statistics for all players in a Valorant match
get_valorant_matches_matchIdOrSlug_teams_teamIdOrSlug_statsGet the aggregated team statistics for a Valorant match
get_valorant_players_playerIdOrSlug_statsGet a Valorant player stats by ID or slug
get_valorant_series_serieIdOrSlug_players_playerIdOrSlug_statsGet the aggregated player statistics for a Valorant series
get_valorant_series_serieIdOrSlug_teams_teamIdOrSlug_statsGet the aggregated team statistics for a Valorant series
get_valorant_teams_teamIdOrSlug_statsGet a Valorant team stats by ID or slug
get_valorant_tournaments_tournamentIdOrSlug_players_playerIdOrSlug_statsGet the aggregated player statistics for a Valorant tournament
get_valorant_tournaments_tournamentIdOrSlug_teams_teamIdOrSlug_statsGet the aggregated team statistics for a Valorant tournament

get_valorant_matches_matchIdOrSlug_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
matchIdOrSlugMatchIdOrSlugA match ID or slug

Return Type

ValorantStatsForPlayersByMatch

Example Usage Code Snippet

import { MatchIdOrSlug, PandascoreClient } from 'pandascore_client';

(async () => {
const pandascoreClient = new PandascoreClient({
token: 'YOUR_TOKEN',
});

const matchIdOrSlug = 5;

const { data } = await pandascoreClient.valorantStats.getValorantMatchesMatchIdOrSlugPlayersStats();

console.log(data);
})();

get_valorant_matches_matchIdOrSlug_teams_teamIdOrSlug_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
matchIdOrSlugMatchIdOrSlugA match ID or slug
teamIdOrSlugTeamIdOrSlugA team ID or slug

Return Type

ValorantStatsForTeamByMatch

Example Usage Code Snippet

import { MatchIdOrSlug, PandascoreClient, TeamIdOrSlug } from 'pandascore_client';

(async () => {
const pandascoreClient = new PandascoreClient({
token: 'YOUR_TOKEN'});

const matchIdOrSlug = 5;
const teamIdOrSlug = 10;

const { data } = await pandascoreClient.valorantStats.getValorantMatchesMatchIdOrSlugTeamsTeamIdOrSlugStats(
,

);

console.log(data);
})();

get_valorant_players_playerIdOrSlug_stats

Get a Valorant player stats by ID or slug

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

Parameters

NameTypeRequiredDescription
playerIdOrSlugPlayerIdOrSlugA player ID or slug
videogameVersionVideogameVersionOrAll
fromstringFilter out 'from' date
tostringFilter out 'to' date

Return Type

ValorantStatsForPlayer

Example Usage Code Snippet

import { PandascoreClient, PlayerIdOrSlug, VideogameVersionOrAll } from 'pandascore_client';

(async () => {
const pandascoreClient = new PandascoreClient({
token: 'YOUR_TOKEN'});

const playerIdOrSlug = 9;
const videogameVersionOrAll = "5.4970743709";

const { data } = await pandascoreClient.valorantStats.getValorantPlayersPlayerIdOrSlugStats(
,
{
videogameVersion: videogameVersionOrAll,
from: "2017-07-21",
to: "2017-07-21",
}
);

console.log(data);
})();

get_valorant_series_serieIdOrSlug_players_playerIdOrSlug_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
serieIdOrSlugSerieIdOrSlugA serie ID or slug
playerIdOrSlugPlayerIdOrSlugA player ID or slug
videogameVersionVideogameVersionOrAll

Return Type

ValorantStatsForPlayerBySerie

Example Usage Code Snippet

import { PandascoreClient, PlayerIdOrSlug, SerieIdOrSlug, VideogameVersionOrAll } from 'pandascore_client';

(async () => {
const pandascoreClient = new PandascoreClient({
token: 'YOUR_TOKEN'});

const serieIdOrSlug = 10;
const playerIdOrSlug = 9;
const videogameVersionOrAll = "5.4970743709";

const { data } = await pandascoreClient.valorantStats.getValorantSeriesSerieIdOrSlugPlayersPlayerIdOrSlugStats(
,
,
{
videogameVersion: videogameVersionOrAll,
}
);

console.log(data);
})();

get_valorant_series_serieIdOrSlug_teams_teamIdOrSlug_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
serieIdOrSlugSerieIdOrSlugA serie ID or slug
teamIdOrSlugTeamIdOrSlugA team ID or slug
videogameVersionVideogameVersionOrAll

Return Type

ValorantStatsForTeamBySerie

Example Usage Code Snippet

import { PandascoreClient, SerieIdOrSlug, TeamIdOrSlug, VideogameVersionOrAll } from 'pandascore_client';

(async () => {
const pandascoreClient = new PandascoreClient({
token: 'YOUR_TOKEN'});

const serieIdOrSlug = 10;
const teamIdOrSlug = 10;
const videogameVersionOrAll = "5.4970743709";

const { data } = await pandascoreClient.valorantStats.getValorantSeriesSerieIdOrSlugTeamsTeamIdOrSlugStats(
,
,
{
videogameVersion: videogameVersionOrAll,
}
);

console.log(data);
})();

get_valorant_teams_teamIdOrSlug_stats

Get a Valorant team stats by ID or slug

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

Parameters

NameTypeRequiredDescription
teamIdOrSlugTeamIdOrSlugA team ID or slug
videogameVersionVideogameVersionOrAll
fromstringFilter out 'from' date
tostringFilter out 'to' date

Return Type

ValorantStatsForTeam

Example Usage Code Snippet

import { PandascoreClient, TeamIdOrSlug, VideogameVersionOrAll } from 'pandascore_client';

(async () => {
const pandascoreClient = new PandascoreClient({
token: 'YOUR_TOKEN'});

const teamIdOrSlug = 10;
const videogameVersionOrAll = "5.4970743709";

const { data } = await pandascoreClient.valorantStats.getValorantTeamsTeamIdOrSlugStats(
,
{
videogameVersion: videogameVersionOrAll,
from: "2017-07-21",
to: "2017-07-21",
}
);

console.log(data);
})();

get_valorant_tournaments_tournamentIdOrSlug_players_playerIdOrSlug_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
tournamentIdOrSlugTournamentIdOrSlugA tournament ID or slug
playerIdOrSlugPlayerIdOrSlugA player ID or slug
videogameVersionVideogameVersionOrAll

Return Type

ValorantStatsForPlayerByTournament

Example Usage Code Snippet

import { PandascoreClient, PlayerIdOrSlug, TournamentIdOrSlug, VideogameVersionOrAll } from 'pandascore_client';

(async () => {
const pandascoreClient = new PandascoreClient({
token: 'YOUR_TOKEN'});

const tournamentIdOrSlug = 2;
const playerIdOrSlug = 9;
const videogameVersionOrAll = "5.4970743709";

const { data } = await pandascoreClient.valorantStats.getValorantTournamentsTournamentIdOrSlugPlayersPlayerIdOrSlugStats(
,
,
{
videogameVersion: videogameVersionOrAll,
}
);

console.log(data);
})();

get_valorant_tournaments_tournamentIdOrSlug_teams_teamIdOrSlug_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
tournamentIdOrSlugTournamentIdOrSlugA tournament ID or slug
teamIdOrSlugTeamIdOrSlugA team ID or slug
videogameVersionVideogameVersionOrAll

Return Type

ValorantStatsForTeamByTournament

Example Usage Code Snippet

import { PandascoreClient, TeamIdOrSlug, TournamentIdOrSlug, VideogameVersionOrAll } from 'pandascore_client';

(async () => {
const pandascoreClient = new PandascoreClient({
token: 'YOUR_TOKEN'});

const tournamentIdOrSlug = 2;
const teamIdOrSlug = 10;
const videogameVersionOrAll = "5.4970743709";

const { data } = await pandascoreClient.valorantStats.getValorantTournamentsTournamentIdOrSlugTeamsTeamIdOrSlugStats(
,
,
{
videogameVersion: videogameVersionOrAll,
}
);

console.log(data);
})();

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →