Documentation Index
Fetch the complete documentation index at: https://txline-docs.txodds.com/llms.txt
Use this file to discover all available pages before exploring further.
A long-lived stream of scores updates.
The stream consists of two types of events:
- Data messages: These have an
id in the format timestamp:index and data containing a JSON object for a single Scores record.
- Heartbeats: These have an
event field set to heartbeat and may have data like {"Ts": 12345}.
Query Parameters
Optional. Filter the event stream for a single fixture ID.
Optional. The ID of the last event received, to resume the stream.
Response
Returns a Server-Sent Events (SSE) stream with content type text/event-stream.
Data Events
Each data event contains:
- id: Event identifier in format
timestamp:index
- data: JSON object containing a Scores record
Scores Object Structure
Sequence number of the score event
Timestamp of the score event
Map of statistical keys to their values
Sport type (Basketball, UsFootball, etc.)
Heartbeat Events
Heartbeat events keep the connection alive and contain:
- event: Set to
heartbeat
- data: JSON object like
{"Ts": 12345}