Skip to main content
GET
/
v1
/
whoami
Tenant identity introspection
curl --request GET \
  --url https://ticktock.bet/v1/whoami \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "tenant_id": "0e1f…",
    "name": "Acme Sportsbook",
    "scopes": [
      "cs2:matches:list",
      "cs2:matches:read",
      "cs2:markets:read",
      "cs2:markets:settlements",
      "cs2:stream:matches",
      "cs2:stream:markets"
    ],
    "sport_allowlist": [
      "cs2"
    ],
    "rate_limit_rpm": 600,
    "allowed_games": [
      "cs2"
    ]
  }
}

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

Introspection on the calling tenant — who you are, what your key can do, and how often you can call. First request you should make on any new key.
{
  "data": {
    "tenant_id": "uuid",
    "name": "Acme Sportsbook",
    "scopes": ["cs2:matches:list", "cs2:markets:read", ...],
    "sport_allowlist": ["cs2"],
    "rate_limit_rpm": 600
  }
}
If scopes is shorter than expected, contact your account manager.

Required scope

Any valid key. No specific scope needed.

Example

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

Authorizations

X-API-Key
string
header
required

Tenant API key issued during onboarding

Headers

accept
string
default:application/json

Response

Successful Response

Last modified on May 10, 2026