Skip to main content
GET
/
cs2
/
v1
/
tournaments
List CS2 tournaments / events
curl --request GET \
  --url https://ticktock.bet/cs2/v1/tournaments \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "hltv_event_id": 7902,
      "name": "ESL Pro League S20",
      "tier": 1,
      "is_lan": true,
      "prize_pool_usd": 850000,
      "starts_at": "2026-05-01T00:00:00+00:00",
      "ends_at": "2026-05-15T00:00:00+00:00"
    }
  ],
  "meta": {
    "count": 1
  }
}

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

Tournament/event list. Filterable by tier, region, and date range. Each entry carries the HLTV event ID, name, prize pool, format, and key dates. Useful for:
  • Pre-game analytics — group fixtures under their parent tournament.
  • Filtering — only ingest matches from tier-1 events.
  • Calendar UIs — show what’s running this week.

Required scope

  • Minimum: cs2:tournaments:list

Example

curl -H "X-API-Key: $TT_KEY" \
  "https://ticktock.bet/cs2/v1/tournaments?tier=1&from=2026-05-01"

Authorizations

X-API-Key
string
header
required

Tenant API key issued during onboarding

Query Parameters

tier
string | null

Filter by tier (case-insensitive: S, A, B, C, D).

is_lan
boolean | null

Filter LAN-only or online-only events.

limit
integer
default:50
Required range: 1 <= x <= 200

Response

Successful Response

The response is of type Response List Tournaments Cs2 V1 Tournaments Get · object.

Last modified on May 10, 2026