Skip to main content

What it streams

Realtime clock updates scoped to a specific fixtureId. Each message contains the current clock state for a live match — period, elapsed/remaining time, and whether the clock is stopped.

Routing

  • Entity key: payload.fixtureId
  • Filters: sportIds, tournamentIds, fixtureIds
  • Access: live/pregame determined by your apiKey

Payload fields

FieldTypeDescription
fixtureIdstringThe fixture this clock applies to
clockobjectClock state
clock.currentPeriodstring | nullCurrent period (e.g. "p1", "p2")
clock.currentTimestring | nullCurrent match time
clock.remainingTimestring | nullRemaining time in the match
clock.remainingTimeInPeriodstring | nullRemaining time in the current period
clock.stoppedboolean | nullWhether the clock is currently stopped

Example message (JSON)

{
  "channel": "clocks",
  "type": "UPDATE",
  "payload": {
    "fixtureId": "id1500023462078980",
    "clock": {
      "currentPeriod": "p2",
      "currentTime": null,
      "remainingTime": "26:42",
      "remainingTimeInPeriod": "2:42",
      "stopped": false
    }
  },
  "ts": 1775170900000,
  "entryId": "1775170900000-42"
}

Notes

  • Clock updates are delivered independently from scores and fixtures
  • The clock object is also included in the fixtures channel payload (as part of the fixture snapshot)
  • When no clock data is available, all fields will be null
  • Use this channel for high-frequency clock state without receiving the full fixture payload