Skip to main content
GET
/
fixtures
/
updates
/
{epochDay}
/
{hourOfDay}
Get all fixture updates for a single fixture on a given day
curl --request GET \
  --url https://api.example.com/fixtures/updates/{epochDay}/{hourOfDay} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Api-Token: <api-key>'
[
  {
    "Ts": 123,
    "StartTime": 123,
    "Competition": "<string>",
    "CompetitionId": 123,
    "FixtureGroupId": 123,
    "Participant1Id": 123,
    "Participant1": "<string>",
    "Participant2Id": 123,
    "Participant2": "<string>",
    "FixtureId": 123,
    "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.

Authorizations

Authorization
string
header
required

User's session JWT.

X-Api-Token
string
header
required

The user's long-lived API token, obtained from the activation endpoint.

Headers

Authorization
string
required

Bearer token for the user's session JWT.

X-Api-Token
string
required

The user's long-lived API token.

Path Parameters

epochDay
integer
required

The day since the Unix epoch

hourOfDay
integer
required

The hour of the day (0-23)

Response

A list of fixture updates. If no updates are found for the given parameters, an empty list is returned.

Ts
integer<int64>
required
StartTime
integer<int64>
required
Competition
string
required
CompetitionId
integer<int32>
required
FixtureGroupId
integer<int32>
required
Participant1Id
integer<int32>
required
Participant1
string
required
Participant2Id
integer<int32>
required
Participant2
string
required
FixtureId
integer<int64>
required
Participant1IsHome
boolean
required