Odds movement history

Odds movement history

GET /v1/fixtures/{id}/odds/history

The full pre-match and in-play tick history for one market — every recorded price/line change with the score at that moment. Bet365 (the default) carries twelve markets: 1X2, Asian handicap, goal line and corner line (each full-time and half-time), plus corner Asian handicap, card line, card Asian handicap and both-teams-to-score. Any other bookmaker (?bookmaker=, one at a time) carries 1x2, asian, goalline and corner. Ultra plan and above.

Parameters

id required Fixture id.
bookmaker optional One bookmaker slug, default bet365 (see GET /v1/bookmakers). Non-bet365 books carry 1x2, asian, goalline and corner.
market required 1x2 | asian | goalline | corner | 1x2_half | asian_half | goalline_half | corner_half | corner_asian | cards | cards_asian | btts.
page, per_page optional Pagination (per_page default 100, max 500). Ticks are ordered oldest first.

Example

GET /v1/fixtures/{id}/odds/history
curl https://api.5dollarfootballapi.com/v1/fixtures/{id}/odds/history
  -H "Authorization: Bearer fb_live_your_key"
{
  "success": 1,
  "data": {
    "fixture_id": 197864561,
    "bookmaker": { "id": 281, "name": "Bet 365", "slug": "bet365" },
    "market": "asian",
    "ticks": [
      { "minute": null, "line": -1.5,  "home": 1.8,   "away": 2.0,   "score": { "home": null, "away": null }, "recorded_at": "2026-07-16T23:33:40+00:00" },
      { "minute": null, "line": -1.5,  "home": 1.875, "away": 1.925, "score": { "home": null, "away": null }, "recorded_at": "2026-07-17T09:12:04+00:00" },
      { "minute": null, "line": -1.75, "home": 1.8,   "away": 2.0,   "score": { "home": null, "away": null }, "recorded_at": "2026-07-17T14:40:51+00:00" },
      { "minute": null, "line": -1.75, "home": 1.825, "away": 1.975, "score": { "home": null, "away": null }, "recorded_at": "2026-07-17T18:55:19+00:00" },
      { "minute": 2,    "line": -1.75, "home": 1.85,  "away": 1.95,  "score": { "home": 0, "away": 0 },       "recorded_at": "2026-07-17T19:02:35+00:00" },
      { "minute": 14,   "line": -1.5,  "home": 1.9,   "away": 1.9,   "score": { "home": 0, "away": 0 },       "recorded_at": "2026-07-17T19:14:48+00:00" },
      { "minute": 23,   "line": -1.0,  "home": 1.875, "away": 1.925, "score": { "home": 1, "away": 0 },       "recorded_at": "2026-07-17T19:23:57+00:00" },
      { "minute": 38,   "line": -1.25, "home": 1.95,  "away": 1.85,  "score": { "home": 1, "away": 0 },       "recorded_at": "2026-07-17T19:38:20+00:00" },
      { "minute": 51,   "line": -0.75, "home": 1.9,   "away": 1.9,   "score": { "home": 2, "away": 0 },       "recorded_at": "2026-07-17T20:06:11+00:00" },
      { "minute": 64,   "line": -0.5,  "home": 1.85,  "away": 1.95,  "score": { "home": 2, "away": 1 },       "recorded_at": "2026-07-17T20:19:44+00:00" },
      { "minute": 79,   "line": -0.25, "home": 1.975, "away": 1.825, "score": { "home": 2, "away": 1 },       "recorded_at": "2026-07-17T20:34:29+00:00" }
    ]
  },
  "pagination": { "page": 1, "per_page": 100, "count": 11, "has_more": false }
}

Need a key? Create a free account — a working key is issued instantly, no card required.