> For the complete documentation index, see [llms.txt](https://docs.sportmonks.com/v3/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/v3/endpoints-and-entities/endpoints/predictions/get-live-probabilities-by-fixture-id.md).

# GET Live Probabilities by Fixture ID

> **📦 Add-on Required**
>
> Live Probabilities requires the **Predictions add-on** (EUR 9-99).
>
> Available with all base plans. [View pricing →](https://www.sportmonks.com/football-api/plans-pricing/)

This endpoint returns all live probabilities for a single fixture. Use it when you want per-minute win/draw/loss forecasts for a specific live match rather than pulling all probabilities across your subscription.

{% tabs %}
{% tab title="BAse URL" %}

```http
https://api.sportmonks.com/v3/football/predictions/live/probabilities/
fixtures/{fixture_id}
```

{% endtab %}

{% tab title="Example Response" %}

```http
{
  "data": [
    {
      "id": 181,
      "fixture_id": 19656849,
      "period_id": 6965194,
      "minute": 1,
      "predictions": {
        "home": 52.08,
        "away": 25.76,
        "draw": 22.15
      },
      "type_id": 237
    },
    {
      "id": 182,
      "fixture_id": 19656849,
      "period_id": 6965194,
      "minute": 2,
      "predictions": {
        "home": 52.84,
        "away": 25.64,
        "draw": 21.52
      },
      "type_id": 237
    },
    {
      "id": 183,
      "fixture_id": 19656849,
      "period_id": 6965194,
      "minute": 3,
      "predictions": {
        "home": 28.02,
        "away": 51.05,
        "draw": 20.92
      },
      "type_id": 237
    }
  ]
}
```

{% endtab %}

{% tab title="Field Description" %}

| Field         | Description                                                                                     | Type    |
| ------------- | ----------------------------------------------------------------------------------------------- | ------- |
| `id`          | The unique ID of this live prediction record                                                    | integer |
| `fixture_id`  | The ID of the fixture this prediction belongs to                                                | integer |
| `period_id`   | The ID of the match period (e.g. first half, second half) this prediction was recorded in       | integer |
| `minute`      | The match minute at which this prediction was generated                                         | integer |
| `predictions` | An object containing the home win, away win, and draw probabilities as percentages              | object  |
| `type_id`     | The prediction type. For live probabilities, this is always `237` (Fulltime Result Probability) | integer |
| {% endtab %}  |                                                                                                 |         |
| {% endtabs %} |                                                                                                 |         |

{% tabs %}
{% tab title="Query Parameters" %}

| Name         | Required? | Description                                                                                                                   |
| ------------ | --------- | ----------------------------------------------------------------------------------------------------------------------------- |
| `api_token`  | YES       | Your unique API token. Alternatively, provide it in the request header. Ex. `?api_token=YOUR_TOKEN`                           |
| `include`    | NO        | Enrich the response with related data. Ex. `&include=fixture;period;type`                                                     |
| `filters`    | NO        | Filter the response on related entities. See the Static and Dynamic Filter tabs for available options.                        |
| `locale`     | NO        | Translate name fields into your selected language. See the [translations page](https://claude.ai/pages/IAfEN1RMb8ia2qKBsVkk). |
| {% endtab %} |           |                                                                                                                               |

{% tab title="Static Filters" %}

| Static Filter | Available on Entity | Description                      | Example |
| ------------- | ------------------- | -------------------------------- | ------- |
| N/A           | N/A                 | Not available for this endpoint. | N/A     |
| {% endtab %}  |                     |                                  |         |

{% tab title="Dynamic Filters" %}

| Dynamic Filter    | Available on Entity | Description                                                            | Example                        |
| ----------------- | ------------------- | ---------------------------------------------------------------------- | ------------------------------ |
| `predictionTypes` | LivePrediction      | Filter results to a specific prediction type ID, separated by a comma. | `&filters=predictionTypes:237` |
| {% endtab %}      |                     |                                                                        |                                |
| {% endtabs %}     |                     |                                                                        |                                |

#### Filters

More information on how to use filters can be found in the [filtering tutorial](https://docs.sportmonks.com/football/api/request-options/filtering). To check all available filters for this entity:

{% hint style="info" %}

```html
https://api.sportmonks.com/v3/my/filters/entity?api_token=YOUR_TOKEN
```

{% endhint %}

#### Pagination

YES - cursor-based. Each response includes a `pagination` object:

```json
"pagination": {
  "count": 25,
  "per_page": 25,
  "current_page": 1,
  "next_cursor": "WzEsMixbMTk3MTAxMDBdLFtbInNwb3J0cy5...",
  "has_more": true
}
```

Pass the `next_cursor` value as a `cursor` parameter in your next request. Keep paginating until `has_more` is `false`.

#### Parameters

| Parameter  | Required | Description                                                                           | Example                         |
| ---------- | -------- | ------------------------------------------------------------------------------------- | ------------------------------- |
| `order`    | No       | Returns live probabilities ordered by `id` (`asc` or `desc`). Defaults to `asc`.      | `&order=desc`                   |
| `per_page` | No       | The number of results to return per page (max 50). Defaults to 25.                    | `&per_page=50`                  |
| `cursor`   | No       | The cursor value from `next_cursor` in the previous response. Omit on the first call. | `&cursor=WzEsMixbMTk3MTAxMD...` |

#### Include depth

You can use a total of `1` nested include on this endpoint.

#### Include options

`fixture` `period` `type`

```http
https://api.sportmonks.com/v3/football/fixtures/{fixture_id}
?include=livePredictions&api_token=YOUR_TOKEN
```

#### Checking availability

To check whether a fixture supports live predictions before requesting them, use the `metadata` include on the fixture and look for the `LIVE_PREDICTION_STATUS` type:

```http
https://api.sportmonks.com/v3/football/fixtures/{fixture_id}
?include=metadata.type&api_token=YOUR_TOKEN
```

The `values.live_predictable` field returns `true` if live predictions are available for that fixture.

```json
{
  "metadata": [
    {
      "id": 9561219,
      "metadatable_id": 19656849,
      "type_id": 117442,
      "value_type": "object",
      "values": {
        "live_predictable": true
      },
      "type": {
        "id": 117442,
        "name": "Live Prediction Status",
        "code": "live-prediction-status",
        "developer_name": "LIVE_PREDICTION_STATUS",
        "model_type": "metadata",
        "stat_group": ""
      }
    }
  ]
}
```

#### Postman

We also offer detailed Postman documentation with examples and a complete, up-to-date version of all our endpoints. Below is a button to fork or import the collection.

[![Run in Postman](https://run.pstmn.io/button.svg)](https://app.getpostman.com/run-collection/11949411-c7a3a0a0-b5c5-4109-9bf6-f430fec65316?action=collection%2Ffork\&collection-url=entityId%3D11949411-c7a3a0a0-b5c5-4109-9bf6-f430fec65316%26entityType%3Dcollection%26workspaceId%3D17c720d0-d97b-42a9-9ea7-23260ed53ddf)

#### Code Example

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

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

```javascript
const fixtureId = 19656849;
const response = await fetch(
  `https://api.sportmonks.com/v3/football/predictions/live/probabilities/fixtures/${fixtureId}?api_token=YOUR_TOKEN`
);
const data = await response.json();
console.log(data);
```

{% endtab %}

{% tab title="PHP" %}

```php
<?php

$fixtureId = 19656849;
$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => "https://api.sportmonks.com/v3/football/predictions/live/probabilities/fixtures/{$fixtureId}?api_token=YOUR_TOKEN",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
```

{% endtab %}

{% tab title="curl" %}

```http
curl --location 'https://api.sportmonks.com/v3/football/predictions/
live/probabilities/fixtures/19656849?api_token=YOUR_TOKEN
```

{% endtab %}

{% tab title="Python" %}

```python
import http.client

fixture_id = 19656849
conn = http.client.HTTPSConnection("api.sportmonks.com")
payload = ''
headers = {}
conn.request("GET", f"/v3/football/predictions/live/probabilities/fixtures/{fixture_id}?api_token=YOUR_TOKEN", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
```

{% endtab %}

{% tab title="Go" %}

```go
package main

import (
  "fmt"
  "io/ioutil"
  "net/http"
)

func main() {
  fixtureId := "19656849"
  url := "https://api.sportmonks.com/v3/football/predictions/live/probabilities/fixtures/" + fixtureId + "?api_token=YOUR_TOKEN"

  client := &http.Client{}
  req, err := http.NewRequest("GET", url, nil)
  if err != nil {
    fmt.Println(err)
    return
  }

  res, err := client.Do(req)
  if err != nil {
    fmt.Println(err)
    return
  }
  defer res.Body.Close()

  body, err := ioutil.ReadAll(res.Body)
  if err != nil {
    fmt.Println(err)
    return
  }
  fmt.Println(string(body))
}
```

{% endtab %}
{% endtabs %}

#### See also

**Regular Predictions**

* [GET Probabilities](https://docs.sportmonks.com/football/endpoints-and-entities/endpoints/predictions/get-probabilities)
* [GET Probabilities by Fixture ID](https://docs.sportmonks.com/football/endpoints-and-entities/endpoints/predictions/get-probabilities-by-fixture-id)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.sportmonks.com/v3/endpoints-and-entities/endpoints/predictions/get-live-probabilities-by-fixture-id.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
