Skip to main content
GET
/
cs2
/
v1
/
teams
/
{hltv_id}
CS2 team profile + per-map stats
curl --request GET \
  --url https://ticktock.bet/cs2/v1/teams/{hltv_id} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "hltv_id": 11712,
    "name": "Sashi",
    "country_code": "DK",
    "world_ranking": 42,
    "region": "EMEA",
    "time_filter": "3months",
    "map_stats": [
      {
        "map_name": "all",
        "maps_played": 87,
        "wins": 51,
        "losses": 33,
        "win_rate": 0.586,
        "rating": 1.06,
        "ct_round_win_pct": 0.524,
        "t_round_win_pct": 0.481
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ticktock.bet/llms.txt

Use this file to discover all available pages before exploring further.

What it returns

Team identity (name, country, ranking, region) plus the per-map map_stats block:
map_stats[] fieldMeaning
map_name"all" for the aggregate, otherwise the HLTV map slug (e.g. de_inferno)
maps_played, wins, draws, losses, win_rateVolume + W/L
total_kills, total_deaths, kd_ratio, ratingAggregate skill metrics
rounds_played, rounds_won, round_win_rateRound-level
ct_round_win_pct, t_round_win_pctSide splits
pistol_rounds, pistol_rounds_won, pistol_win_pctPistol-round W/L
pick_pct, ban_pctMap veto preference
first_kill_win_pct, first_death_win_pctFirst-kill conversion
map_details.{first_kill_win_pct_ct, first_kill_win_pct_t, first_death_loss_pct_ct, first_death_loss_pct_t}Per-side first-duel splits
top_player_opening_kills[]Per-roster opening-kill leaderboard (player_id, nickname, opening_kpr/dpr)
players_openingSame data raw
players_flashPer-player flash assists (when scraped)
opening_kprTeam-level opening KPR (sum of player successes / rounds)
map_stats always includes the "all" aggregate plus one row per map the team has played in the requested window.

Required scope

  • Minimum: cs2:teams:read

Query

ParamDefaultDescription
time_filter3mWindow for map_stats. Accepts 3m, 6m, 1y, all.

Example

curl -H "X-API-Key: $TT_KEY" \
  "https://ticktock.bet/cs2/v1/teams/11712?time_filter=6m"

Authorizations

X-API-Key
string
header
required

Tenant API key issued during onboarding

Path Parameters

hltv_id
integer
required

Query Parameters

time_filter
string
default:3m

Window for map_stats: 3m, 6m, 1y, all.

Response

Successful Response

The response is of type Response Get Team Cs2 V1 Teams Hltv Id Get · object.

Last modified on May 10, 2026