GuidesRelease Log
Coverage MatrixDocumentationChange LogLog InContact Us
Release Log

Probabilities API - Live Match Clock

We've included a clock node to our Probabilities Timeline endpoint, which provides running clock updates for supported matches.


Benefit

This update allows you to consume a reliable live match clock independent of market updates.

Previously, match clock updates were only available alongside a market update, meaning a match needed market churn to provide clock updates. Now, you may easily display a live match clock to support a game's probability info.


☑️ Sample Requests

  • Sport Event Probabilities Timeline - https://api.sportradar.com/probabilities/trial/v1/en/sport_events/ {sport_event_id}/timeline.json

🔢 Versions


🔁 Endpoints Affected

  • Sport Event Probabilities Timeline

⚙️ Return Samples

    <sport_event_status status="ended" match_status="ended" away_score="128" home_score="126" live="true">
        <clock match_time="47:26" remaining_time="0:34" remaining_time_in_period="0:34"/>
    </sport_event_status>
    <timeline>
        <market name="2way" live="true" last_updated="2026-02-05T00:34:30+00:00">
            <outcomes>
                <outcome name="home_team_winner" probability="43.7"/>
                <outcome name="away_team_winner" probability="56.3"/>
            </outcomes>
        </market>
        <market name="2way" live="true" last_updated="2026-02-05T00:42:31+00:00" home_score="0" away_score="2" match_time="0:17" remaining_time="47:43" remaining_time_in_period="11:43">
            <outcomes>
                <outcome name="home_team_winner" probability="42.2"/>
                <outcome name="away_team_winner" probability="57.8"/>
            </outcomes>
        </market>
    "sport_event_status":
    {
        "status": "ended",
        "match_status": "ended",
        "away_score": 128,
        "home_score": 126,
        "live": true,
        "clock":
        {
            "match_time": "47:26",
            "remaining_time": "0:34",
            "remaining_time_in_period": "0:34"
        }
    },
    "timeline":
    [
        {
            "name": "2way",
            "outcomes":
            [
                {
                    "name": "home_team_winner",
                    "probability": 43.7
                },
                {
                    "name": "away_team_winner",
                    "probability": 56.3
                }
            ],
            "live": true,
            "last_updated": "2026-02-05T00:34:30+00:00"
        },
        {
            "name": "2way",
            "outcomes":
            [
                {
                    "name": "home_team_winner",
                    "probability": 42.2
                },
                {
                    "name": "away_team_winner",
                    "probability": 57.8
                }
            ],
            "live": true,
            "last_updated": "2026-02-05T00:42:31+00:00",
            "home_score": 0,
            "away_score": 2,
            "match_time": "0:17",
            "remaining_time": "47:43",
            "remaining_time_in_period": "11:43"
        },