Skip to main content
GET
/
v1
/
sports
Catalog of sports served by this API
curl --request GET \
  --url https://ticktock.bet/v1/sports \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "slug": "cs2",
      "name": "Counter-Strike 2",
      "api_version": "v1",
      "base_url": "/cs2/v1"
    }
  ],
  "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

The list of sport namespaces currently live, each with its API version and base URL. Use this for runtime discovery instead of hard-coding sport slugs — when we ship Dota 2 or another sport, it lights up here.
{
  "data": [
    {
      "slug": "cs2",
      "name": "Counter-Strike 2",
      "api_version": "v1",
      "base_url": "/cs2/v1"
    }
  ],
  "meta": { "count": 1 }
}

Required scope

Any valid key.

Example

curl -H "X-API-Key: $TT_KEY" \
  https://ticktock.bet/v1/sports

Authorizations

X-API-Key
string
header
required

Tenant API key issued during onboarding

Response

Successful Response

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

Last modified on May 10, 2026