Skip to main content
GET
/
fixtures
/
updates
/
{epochDay}
/
{hourOfDay}
Get fixture updates for a given hour
curl --request GET \
  --url https://api.example.com/fixtures/updates/{epochDay}/{hourOfDay}
{
  "Ts": {},
  "StartTime": {},
  "Competition": "<string>",
  "CompetitionId": {},
  "FixtureGroupId": {},
  "Participant1Id": {},
  "Participant1": "<string>",
  "Participant2Id": {},
  "Participant2": "<string>",
  "FixtureId": {},
  "Participant1IsHome": true
}

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 all fixture updates for a single fixture on a given day.

Path Parameters

epochDay
integer
required
The day since the Unix epoch
hourOfDay
integer
required
The hour of the day (0-23)

Response

Returns an array of Fixture objects. If no updates are found for the given parameters, an empty array is returned.

Fixture Object Properties

Ts
int64
required
Timestamp of the fixture data
StartTime
int64
required
Fixture start time timestamp
Competition
string
required
Competition name
CompetitionId
int32
required
Competition identifier
FixtureGroupId
int32
required
Fixture group identifier
Participant1Id
int32
required
First participant identifier
Participant1
string
required
First participant name
Participant2Id
int32
required
Second participant identifier
Participant2
string
required
Second participant name
FixtureId
int64
required
Unique fixture identifier
Participant1IsHome
boolean
required
Indicates if participant 1 is the home team
[
  {
    "Ts": 1704067200000,
    "StartTime": 1704153600000,
    "Competition": "NCAA Football",
    "CompetitionId": 123,
    "FixtureGroupId": 456,
    "Participant1Id": 789,
    "Participant1": "Alabama",
    "Participant2Id": 790,
    "Participant2": "Georgia",
    "FixtureId": 1001,
    "Participant1IsHome": true
  }
]