Description
Get a list of odds for a given combination of fixtures, and markets. These odds are related to specific events, they do not apply for entire tournaments or entire seasons.
Specific Parameter Information
For a full list of parameters, scroll to the bottom of this page.
You must pass at least one of the following (fixture_id
, team_id
, player_id
) and at most 5
.
fixture_id
Can pass up to 5 of these per request.
market
The markets that you want odds for. You can pass the id or the name.
is_main
This parameter indicates whether a line is the "main" or "given" line for a market. For example, the +/- 6 Point Spread and the Over/Under 46.5 Total Points lines are the "main" lines for the DraftKings game below:
odds_format
Needs to be one of the following (AMERICAN
, DECIMAL
, PROBABILITY
, MALAY
, HONG_KONG
, INDONESIAN
). This defaults to AMERICAN
.
Example Responses
URL: https://api.opticodds.com/api/v3/copilot/fixtures/odds?&fixture_id=032B6289DB25
{
"data": [
{
"id": "032B6289DB25",
"game_id": "78014-37797-24-43",
"start_date": "2024-10-25T00:15:00Z",
"home_competitors": [
{
"id": "13AD4FDBEBA8",
"name": "Los Angeles Rams",
"abbreviation": "LAR",
"logo": "https://cdn.opticodds.com/team-logos/football/99.png"
}
],
"away_competitors": [
{
"id": "24E4EA618C5E",
"name": "Minnesota Vikings",
"abbreviation": "MIN",
"logo": "https://cdn.opticodds.com/team-logos/football/101.png"
}
],
"home_team_display": "Los Angeles Rams",
"away_team_display": "Minnesota Vikings",
"status": "unplayed",
"is_live": false,
"sport": {
"id": "football",
"name": "Football"
},
"league": {
"id": "nfl",
"name": "NFL"
},
"tournament": null,
"odds": [
{
"id": "1:-1:032B6289DB25:point_spread:los_angeles_rams_+2_5",
"version_id": -1,
"version": "default",
"odd_id": "032B6289DB25:point_spread:los_angeles_rams_+2_5",
"market": "Point Spread",
"name": "Los Angeles Rams +2.5",
"is_main": true,
"selection": "Los Angeles Rams",
"normalized_selection": "los_angeles_rams",
"market_id": "point_spread",
"price": -101,
"timestamp": 1729714816.49106,
"grouping_key": "default:2.5",
"points": 2.5,
"selection_line": null,
"player_id": null,
"team_id": "13AD4FDBEBA8"
},
{
"id": "1:-1:032B6289DB25:point_spread:minnesota_vikings_-2_5",
"version_id": -1,
"version": "default",
"odd_id": "032B6289DB25:point_spread:minnesota_vikings_-2_5",
"market": "Point Spread",
"name": "Minnesota Vikings -2.5",
"is_main": true,
"selection": "Minnesota Vikings",
"normalized_selection": "minnesota_vikings",
"market_id": "point_spread",
"price": -118,
"timestamp": 1729714816.49106,
"grouping_key": "default:2.5",
"points": -2.5,
"selection_line": null,
"player_id": null,
"team_id": "24E4EA618C5E"
}
]
}
]
}