GET Odds by Fixture ID
https://api.sportmonks.com/v3/{sport}/odds/pre-match/fixtures/{ID} {
"id": 1040325,
"fixture_id": 18557891,
"market_id": 1,
"bookmaker_id": 28,
"label": "1",
"value": "2.05",
"name": "Home",
"sort_order": null,
"market_description": "Match Winner",
"probability": "48.78%",
"dp3": "2.050",
"fractional": "31/15",
"american": "104",
"winning": false,
"stopped": false,
"total": null,
"handicap": null,
"participants": "10266"
},
{
"id": 1040326,
"fixture_id": 18557891,
"market_id": 1,
"bookmaker_id": 28,
"label": "X",
"value": "3.10",
"name": "Draw",
"sort_order": null,
"market_description": "Match Winner",
"probability": "32.26%",
"dp3": "3.100",
"fractional": "25/8",
"american": "210",
"winning": false,
"stopped": false,
"total": null,
"handicap": null,
"participants": null
},
{
"id": 1040327,
"fixture_id": 18557891,
"market_id": 1,
"bookmaker_id": 28,
"label": "2",
"value": "3.20",
"name": "Away",
"sort_order": null,
"market_description": "Match Winner",
"probability": "31.25%",
"dp3": "3.200",
"fractional": "16/5",
"american": "220",
"winning": false,
"stopped": false,
"total": null,
"handicap": null,
"participants": "6157"
},Query Parameters
Required?
Description
Static Filters
Available on Entity
Description
Example
Pagination
Include depth
Include options
Related entities
Code Example
require "uri"
require "net/http"
url = URI("https://api.sportmonks.com/v3/odds/pre-match/fixtures/{ID}?api_token={your_token}")
https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true
request = Net::HTTP::Get.new(url)
response = https.request(request)
puts response.read_body
import http.client
conn = http.client.HTTPSConnection("api.sportmonks.com")
payload = ''
headers = {}
conn.request("GET", "/v3/odds/pre-match/fixtures/{ID}?api_token={your_token}", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))Last updated