Value Bet
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.
Please note that our algorithm detects value bets based on all available odds in combination with the fair odd calculated by the value bet algorithm. Therefore, not every match has a value bet available.
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.
Requesting value bets
GET All Value Bets
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 authentication section for more info.
Let’s evaluate the response:
bet
: 1 = home, x = draw, 2 = awaybookmaker
: The name of the bookmaker with the best oddodd
: The odd provided by the bookmakeris_value
: Indicates if the value bet is still availablestake
: 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.
GET Value Bets by Fixture ID
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).
Adding useful information
As you’ve learnt in the includes tutorial, 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 endpoint pages. For the value bets, there are only two includes available:
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.
Selecting and filtering
In our filtering tutorial 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.
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:
Check our filtering tutorial for more tips and tricks.
Last updated