SoccersAPIDocs
DocsReferenceFixtures › Match odds by bookmaker

GETMatch odds by bookmaker

Odds history of one bookmaker for the match, by market.

/v2.2/fixtures/ with t=match_odds_info

Try it in the interactive referenceAll Fixtures operations

Request

GET /v2.2/fixtures/?user=USER&token=TOKEN&t=match_odds_info&id=2589310&bookmaker_id=1

Parameters

NameRequiredDescriptionExample
idyesMatch ID.2589310
bookmaker_idyesBookmaker ID.1
odds_formatnoOdds format on odds datasets: decimal (default), fractional or american.decimal

Example response

{
  "data": {
    "id": "1",
    "name": "10Bet",
    "markets": [
      {
        "id": 1,
        "name": "1X2, Full Time Result",
        "odds": [
          {
            "home": "13.000",
            "draw": "1.090",
            "away": "8.000",
            "handicap": null,
            "score": null,
            "minute": null,
            "bookmaker_event_id": null,
            "last_update": {
              "date": "2026-08-30 13:04",
              "timezone": "UTC"
            }
          }
        ]
      }
    ]
  },
  "meta": {
    "requests_left": 2950,
    "user": "your_username",
    "plan": "Soccer API 50",
    "page": 1,
    "pages": 1,
    "count": 1,
    "total": 1,
    "msg": ""
  }
}