Skip to main content
GET
/
v1
/
alive
Heartbeat for authenticated clients
curl --request GET \
  --url https://ticktock.bet/v1/alive \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "status": "ok",
    "timestamp": "2026-05-10T13:42:11.123Z"
  }
}

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

Current server time. Mirrors the AMQP <alive> envelope (which the feed publishes every 10s) — useful as a keepalive for long-lived B2B integrations that don’t connect to the AMQP feed.
{
  "data": {
    "status": "ok",
    "timestamp": "2026-05-10T13:42:11.123Z"
  }
}

Required scope

Any valid key.

Example

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

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