> For the complete documentation index, see [llms.txt](https://docs.sportmonks.com/v2/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportmonks.com/v2/endpoint-overview/prediction-api/get-value-bet-by-fixture-id.md).

# GET Value Bet by Fixture ID

Besides the **Prediction API**, we also have the **Value Bet API**. While the Prediction API evaluates the probabilities of game events, the Value Bet API is processing thousands of historical odds data and market trends to find **Value opportunities**, compared to bookmakers' odds.

Once the opening odds are available, the **value detection algorithm** is running every 10 minutes up to the beginning of the match. Each value detected by the model is coming with a set of features described below.

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.

It is possible to use the [**Value Bet API** ](https://docs.sportmonks.com/football/endpoint-overview/prediction-api/get-value-bets)endpoint as described on this page. It will give you all Value Bets detected. It is also possible to use the **Value Bet By Fixture Id**.

If you want to combine your Value Bets requests with your requests on the **Fixture** endpoint or **Livescore** endpoint, you can add the relationship include `&include=valuebet.` See the Relationship Fixture Value Bet for more info.

### `Get` Value Bet by Fixture ID

```
https://soccer.sportmonks.com/api/v2.0/predictions/valuebets/fixture/{fixture_ID}
```

| Endpoint details        |         |
| ----------------------- | ------- |
| Authorization           | API Key |
| Pagination              | NO      |
| Allowed nested includes | 0       |

#### Parameters

| Available parameters |                                                                                                                  |
| -------------------- | ---------------------------------------------------------------------------------------------------------------- |
| include              | Enrich the API with more data and/or nested includes. Can be used by adding `&include=` etc to your request url. |

#### Include options

`fixture`<br>

Includes are the cornerstone of our API and allow you to enrich and customize your requests. This flexibility is what distinguishes us from our competitors.&#x20;

You can learn more about what includes are and how they work here:

#### Example response

{% tabs %}
{% tab title="Request" %}

```
https://soccer.sportmonks.com/api/v2.0/predictions/valuebets/fixture/16475287?api_token={API_TOKEN}
```

{% endtab %}

{% tab title="Response" %}

```javascript
    "data": {
        "fixture_id": 16475287,
        "predictions": {
            "bet": "1",
            "bookmaker": "dafabet",
            "odd": 1.1,
            "stake": 3.66,
            "fair_odd": 1.09
        }
    },
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Check this endpoint in Postman.\
&#x20;                                                             [![Run in Postman](https://run.pstmn.io/button.svg)](https://football-postman.sportmonks.com/#2f181bcb-fdbe-46f9-b812-aae8fde6fc6d)
{% endhint %}
