Skip to main content
GET
/
odds
/
updates
/
{epochDay}
/
{hourOfDay}
/
{interval}
Get odds updates from a specific historical 5-minute interval
curl --request GET \
  --url https://api.example.com/odds/updates/{epochDay}/{hourOfDay}/{interval}
{
  "FixtureId": {},
  "MessageId": "<string>",
  "Ts": {},
  "Bookmaker": "<string>",
  "BookmakerId": {},
  "SuperOddsType": "<string>",
  "GameState": "<string>",
  "InRunning": true,
  "MarketParameters": "<string>",
  "MarketPeriod": "<string>",
  "PriceNames": [
    "<string>"
  ],
  "Prices": [
    {}
  ]
}

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 odd 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
int64
Optional filter by fixture ID

Response

Returns an array of Odds objects from the specified time interval.
FixtureId
int64
required
Fixture identifier
MessageId
string
required
Unique message identifier for the odds update
Ts
int64
required
Timestamp of the odds update
Bookmaker
string
required
Bookmaker name
BookmakerId
int32
required
Bookmaker identifier
SuperOddsType
string
required
Type of odds market
GameState
string
Current state of the game
InRunning
boolean
required
Indicates if the fixture is currently in play
MarketParameters
string
Parameters for the market (e.g., handicap, total)
MarketPeriod
string
Period the market applies to
PriceNames
array<string>
Names of the prices/outcomes
Prices
array<int32>
Odds values for each outcome
[
  {
    "FixtureId": 1001,
    "MessageId": "msg_12345",
    "Ts": 1704067200000,
    "Bookmaker": "BetMGM",
    "BookmakerId": 5,
    "SuperOddsType": "Moneyline",
    "GameState": "PreMatch",
    "InRunning": false,
    "MarketParameters": "",
    "MarketPeriod": "FullTime",
    "PriceNames": ["Alabama", "Georgia"],
    "Prices": [150, 200]
  }
]