Players

Retrieve detailed player profiles with career stats, team info, and recent match performance.

API Endpoints

GET/v6/esports/{sport}/players/{player_id}

Get single player by ID

GET/v6/esports/{sport}/players/search?q=

Search players by nickname

GET/v6/esports/{sport}/players/{player_slug}/gamelogs

Recent map-by-map stats

GET/v6/esports/{sport}/bo3gg/players

Full player directory (optional search query)

Parameters

ParameterTypeRequiredDescription
sportstringPath slug: cs2, valorant, lol, dota2
player_idintegerPlayer ID from rankings or search
qstringSearch query for player nickname (search endpoint). Alias: search

Example URLs

Get player by ID:

/v6/esports/cs2/players/18452

Search for player:

/v6/esports/cs2/players/search?q=zywoo

Recent gamelogs by slug:

/v6/esports/cs2/players/zywoo/gamelogs

Example Response

Response
{
  "source": "kashrock",
  "provider": "bo3.gg",
  "player": {
    "id": 18452,
    "nickname": "ZywOo",
    "slug": "zywoo",
    "team": "Vitality",
    "image": "https://img.bo3.gg/...",
    "links": {
      "player_image": "https://img.bo3.gg/...",
      "team_logo": "https://img.bo3.gg/..."
    }
  },
  "stats": { "rank": 1, "avg_player_rating": 6.96 }
}