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

GET Live Probabilities

📦 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 currently available within your subscription. Live probabilities are generated per minute during the live period of a match and reflect real-time win/draw/loss forecasts as the game progresses.

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

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

See also

Regular Predictions

Last updated

Was this helpful?