Players

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

API Endpoints

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

Get single player by ID

GET/v6/esports/{discipline}/players/search

Search players by name

Parameters

ParameterTypeRequiredDescription
disciplinestringGame slug: cs2, valorant, lol, dota-2
player_idintegerPlayer ID from rankings or search
qstringSearch query for player name (search endpoint)
include_gamelogsbooleanInclude recent match-by-match stats (default: false)

Example URLs

Get player by ID:

/v6/esports/cs2/players/18452

Search for player:

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

Get player with recent gamelogs:

/v6/esports/cs2/players/18452?include_gamelogs=true

Example Response

Response
{
  "player": {
    "id": 12345,
    "slug": "fear",
    "name": "fear",
    "first_name": "Fear",
    "last_name": "Fear",
    "role": "player",
    "image_url": "https://example.com/player.png",
    "current_team": {
        "id": 678,
        "name": "Example Team",
        "slug": "example-team"
    }
  }
}