> 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-probabilities-by-fixture-id.md).

# GET Probabilities by Fixture ID

### `GET` Probabilities by Fixture ID

```
https://soccer.sportmonks.com/api/v2.0/predictions/probabilities/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:

{% content-ref url="/pages/-MJXOeyBzTS35Z7kTf1c" %}
[Includes](/v2/tutorials/enriching-your-response/includes.md)
{% endcontent-ref %}

#### Example response

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

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

{% endtab %}

{% tab title="Response" %}

```javascript
    "data": {
        "fixture_id": 16475287,
        "predictions": {
            "btts": 33.017,
            "over_2_5": 65.205,
            "under_2_5": 34.791,
            "over_3_5": 43.224,
            "under_3_5": 56.773,
            "HT_over_0_5": 94.655,
            "HT_under_0_5": 5.341,
            "HT_over_1_5": 79.003,
            "HT_under_1_5": 20.993,
            "AT_over_0_5": 34.88,
            "AT_under_0_5": 65.117,
            "AT_over_1_5": 6.946,
            "AT_under_1_5": 93.051,
            "home": 87.372,
            "away": 3.1929,
            "draw": 9.432,
            "correct_score": {
                "0-0": 3.478,
                "0-1": 1.492,
                "0-2": 0.32,
                "0-3": 0.046,
                "0-4": 0.005,
                "1-0": 10.19,
                "1-1": 4.372,
                "1-2": 0.938,
                "1-3": 0.134,
                "1-4": 0.014,
                "1-5": 0.001,
                "2-0": 14.93,
                "2-1": 6.407,
                "2-2": 1.374,
                "2-3": 0.196,
                "2-4": 0.021,
                "2-5": 0.002,
                "3-0": 14.59,
                "3-1": 6.259,
                "3-2": 1.342,
                "3-3": 0.192,
                "3-4": 0.021,
                "3-5": 0.002,
                "4-0": 10.69,
                "4-1": 4.586,
                "4-2": 0.984,
                "4-3": 0.141,
                "4-4": 0.015,
                "4-5": 0.001,
                "5-0": 6.266,
                "5-1": 2.688,
                "5-2": 0.576,
                "5-3": 0.082,
                "5-4": 0.009,
                "5-5": 0.001,
                "6-0": 3.06,
                "6-1": 1.313,
                "6-2": 0.282,
                "6-3": 0.04,
                "6-4": 0.004,
                "7-0": 1.281,
                "7-1": 0.55,
                "7-2": 0.118,
                "7-3": 0.017,
                "7-4": 0.002,
                "8-0": 0.469,
                "8-1": 0.201,
                "8-2": 0.043,
                "8-3": 0.006,
                "8-4": 0.001,
                "9-0": 0.153,
                "9-1": 0.066,
                "9-2": 0.014,
                "9-3": 0.002
            }
        }
    },
```

{% 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 %}
