Retrieve detailed player profiles with career stats, team history, and recent match performance.
Get single player by ID
Search players by name
| Parameter | Type | Required | Description |
|---|---|---|---|
| discipline | string | ✓ | Game slug: cs2, valorant, lol, dota-2 |
| player_id | integer | ✓ | Player ID from rankings or search |
| q | string | — | Search query for player name (search endpoint) |
| include_gamelogs | boolean | — | Include recent match-by-match stats (default: false) |
Get player by ID:
/v6/esports/cs2/players/18452Search for player:
/v6/esports/cs2/players/search?q=zywooGet player with recent gamelogs:
/v6/esports/cs2/players/18452?include_gamelogs=true{
"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"
}
}
}