Value Bet
Last updated
Was this helpful?
Last updated
Was this helpful?
The Value Bet model processes thousands of historical odds data and market trends to find the best value opportunities. In other words, it compares bookmakers' odds with each other and then gives you the best value bookmaker.
Once the opening odds are available, the value detection algorithm runs every 10 minutes up to the beginning of the match.
An overview of all the options to request value bets:
GET Value Bets: returns all value bets available within your subscription.
GET Value Bets by Fixture ID: returns all the value bets available for your requested fixture id.
For all the value bets endpoints the base URL is the same:
https://api.sportmonks.com/v3/football/predictions/value-bets
Per endpoint, the rest of the URL requires additional information. We will explain this per endpoint.
Returns all value bets available within your subscription. You can best use this endpoint if you’re interested in all the value bets available in your subscription. All you have to do is authorize the request with your API token. Check our for more info.
Let’s evaluate the response:
bet
: 1 = home, x = draw, 2 = away
bookmaker
: The name of the bookmaker with the best odd
odd
: The odd provided by the bookmaker
is_value
: Indicates if the value bet is still available
stake
: The stake helps manage the risk that the model would take in the bet. The risk is measured with the volatility of the profit and loss of the value bet strategy. The stake is calculated to have an average risk of one unit.
fair_odd:
Our algorithm allows you to find the fair odd of a value. The fair odd is useful to play against bookmakers that are not listed in Sportmonks. Any odd above the fair odd can be considered as value.
Not interested in all the value bets? Just looking for the value bets of a single fixture? Fear not. You can use the value bets by fixture id endpoint. Add the fixture id
you’re interested in:
https://api.sportmonks.com/v3/football/predictions/value-bets
/fixtures/{fixture_id}
For example, if you’re interested in the value bets for Dundee vs Celtic (fixture id: 18136955).
type
: includes the type.
fixture
: includes the fixture information.
For example, if you’re interested in the value bets for Dundee vs Celtic (fixture id: 18136955) with the type and fixture info.
You’re interested in the value bets for Dundee vs Celtic (fixture id: 18136955) with the type and fixture info, but only the names. This results in the below request and response:
As you’ve learnt in the you can enrich your request with includes. This section will discuss some of the most common requests used on the value bet endpoints.
First of all, you can find a list of all available includes on the For the value bets, there are only two includes available:
In our you’ve learnt how to select specific fields or filter only on the data you’re interested in. Our API returns a set of data related to the value bets by default. We can imagine you’re not interested in all the data the API returns.
Check our for more tips and tricks.