Skip to main content

OwStatsService

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

MethodsDescription
get_ow_games_owGameId_players_playerIdOrSlug_statsGet detailed statistics of a given Overwatch given player for the given game
get_ow_matches_matchIdOrSlug_players_statsGet detailed statistics of Overwatch players for the given match
get_ow_matches_matchIdOrSlug_players_playerIdOrSlug_statsGet detailed statistics of a given Overwatch given player for the given match
get_ow_players_playerIdOrSlug_statsGet detailed statistics of a given Overwatch player
get_ow_series_serieIdOrSlug_players_playerIdOrSlug_statsGet detailed statistics of a given Overwatch given player for the given serie
get_ow_tournaments_tournamentIdOrSlug_players_playerIdOrSlug_statsGet detailed statistics of a given Overwatch player for the given tournament

get_ow_games_owGameId_players_playerIdOrSlug_stats

Get detailed statistics of a given Overwatch given player for the given game

  • HTTP Method: GET
  • Endpoint: /ow/games/{ow_game_id}/players/{player_id_or_slug}/stats

Parameters

NameTypeRequiredDescription
owGameIdnumberAn Overwatch game ID
playerIdOrSlugPlayerIdOrSlugA player ID or slug

Return Type

OwStatsForPlayerByGame

Example Usage Code Snippet

import { PandascoreClient, PlayerIdOrSlug } from 'pandascore_client';

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

const playerIdOrSlug = 9;

const { data } = await pandascoreClient.owStats.getOwGamesOwGameIdPlayersPlayerIdOrSlugStats(3);

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

get_ow_matches_matchIdOrSlug_players_stats

Get detailed statistics of Overwatch players for the given match

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

Parameters

NameTypeRequiredDescription
matchIdOrSlugMatchIdOrSlugA match ID or slug

Return Type

OwStatsForAllPlayersByMatch

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.owStats.getOwMatchesMatchIdOrSlugPlayersStats();

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

get_ow_matches_matchIdOrSlug_players_playerIdOrSlug_stats

Get detailed statistics of a given Overwatch given player for the given match

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

Parameters

NameTypeRequiredDescription
matchIdOrSlugMatchIdOrSlugA match ID or slug
playerIdOrSlugPlayerIdOrSlugA player ID or slug

Return Type

OwStatsForPlayerByMatch

Example Usage Code Snippet

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

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

const matchIdOrSlug = 5;
const playerIdOrSlug = 9;

const { data } = await pandascoreClient.owStats.getOwMatchesMatchIdOrSlugPlayersPlayerIdOrSlugStats(
,

);

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

get_ow_players_playerIdOrSlug_stats

Get detailed statistics of a given Overwatch player

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

Parameters

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

Return Type

OwStatsForPlayer

Example Usage Code Snippet

import { PandascoreClient, PlayerIdOrSlug } from 'pandascore_client';

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

const playerIdOrSlug = 9;

const { data } = await pandascoreClient.owStats.getOwPlayersPlayerIdOrSlugStats(
,
{
from: "2017-07-21",
to: "2017-07-21",
}
);

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

get_ow_series_serieIdOrSlug_players_playerIdOrSlug_stats

Get detailed statistics of a given Overwatch given player for the given serie

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

Parameters

NameTypeRequiredDescription
serieIdOrSlugSerieIdOrSlugA serie ID or slug
playerIdOrSlugPlayerIdOrSlugA player ID or slug

Return Type

OwStatsForPlayerBySerie

Example Usage Code Snippet

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

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

const serieIdOrSlug = 10;
const playerIdOrSlug = 9;

const { data } = await pandascoreClient.owStats.getOwSeriesSerieIdOrSlugPlayersPlayerIdOrSlugStats(
,

);

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

get_ow_tournaments_tournamentIdOrSlug_players_playerIdOrSlug_stats

Get detailed statistics of a given Overwatch player for the given tournament

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

Parameters

NameTypeRequiredDescription
tournamentIdOrSlugTournamentIdOrSlugA tournament ID or slug
playerIdOrSlugPlayerIdOrSlugA player ID or slug

Return Type

OwStatsForPlayerByTournament

Example Usage Code Snippet

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

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

const tournamentIdOrSlug = 2;
const playerIdOrSlug = 9;

const { data } = await pandascoreClient.owStats.getOwTournamentsTournamentIdOrSlugPlayersPlayerIdOrSlugStats(
,

);

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

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →