For the complete documentation index, see llms.txt. This page is also available as Markdown.

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 →

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.

https://api.sportmonks.com/v3/football/predictions/live/probabilities/
fixtures/{fixture_id}
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.

Filters

More information on how to use filters can be found in the filtering tutorial. To check all available filters for this entity:

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

Pagination

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

"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

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:

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

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

Code Example

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

See also

Regular Predictions

Last updated

Was this helpful?