Skip to main content
GET
/
scores
/
updates
/
{epochDay}
/
{hourOfDay}
/
{interval}
Get score updates from a specific historical 5-minute interval
curl --request GET \
  --url https://api.example.com/scores/updates/{epochDay}/{hourOfDay}/{interval}
{
  "data": [
    {}
  ],
  "FixtureId": {},
  "Seq": {},
  "Ts": {},
  "Stats": {},
  "Sport": "<string>"
}

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.

Get a json array of all score updates from a specific historical 5-minute interval.

Path Parameters

epochDay
integer
required
The day since the Unix epoch
hourOfDay
integer
required
The hour of the day (0-23)
interval
integer
required
The 0-indexed 5-minute interval within the hour (0-11)

Query Parameters

fixtureId
int32
Optional filter by fixture ID

Response

data
array<Scores>
Array of Scores objects from the specified time interval

Scores Object

The Scores object contains detailed information about score events and statistics for a fixture. The structure varies by sport type (Basketball, Football, etc.) and includes:
FixtureId
int64
Fixture identifier
Seq
int32
Sequence number of the score event
Ts
int64
Timestamp of the score event
Stats
object
Map of statistical keys to their values
Sport
string
Sport type (Basketball, UsFootball, etc.)