Feed CatalogResults & Standings

Results & Standings

analytics

Outcomes, as the race resolves. championshipprediction projects the standings if the current order holds; classifiedresults fires once with the official classified positions from the F1 SPFeed; racesummary lands post-race with aggregate telemetry metrics and links into the full Telemetry REST endpoints. These are live-delivered webhooks — distinct from the historical REST API, which serves the durable record of past seasons.

Feed IDTierCadenceDescription
championshippredictionanalyticsPer updateLive championship points simulation: projected standings if the current race order holds.
classifiedresultsanalyticsPer updatePost-race classified positions from the official F1 SPFeed (fires once after race end).
racesummaryanalyticsOnce, post-racePost-race telemetry summary with aggregate metrics and links to full telemetry endpoints.

Subscribe with the feedId via webhook or SSE. Tier shown is the minimum plan required.

championshippredictionChampionship Predictionanalytics

Per update

Live championship points simulation: projected standings if the current race order holds.

Sample payload
json
{
  "feed": "championshipprediction",
  "sessionId": "9560",
  "utc": "2026-06-08T14:32:18.441Z",
  "drivers": [
    {
      "driver": {
        "driverId": "norris-lando",
        "constructorId": "mclaren",
        "number": "4",
        "tla": "NOR",
        "name": "Lando Norris",
        "team": "McLaren F1 Team"
      },
      "currentPoints": 186,
      "projectedPoints": 211,
      "currentPosition": 1,
      "projectedPosition": 1,
      "delta": 25
    },
    {
      "driver": {
        "driverId": "verstappen-max",
        "constructorId": "red-bull-racing",
        "number": "1",
        "tla": "VER",
        "name": "Max Verstappen",
        "team": "Red Bull Racing"
      },
      "currentPoints": 178,
      "projectedPoints": 196,
      "currentPosition": 2,
      "projectedPosition": 2,
      "delta": 18
    },
    {
      "driver": {
        "driverId": "leclerc-charles",
        "constructorId": "ferrari",
        "number": "16",
        "tla": "LEC",
        "name": "Charles Leclerc",
        "team": "Scuderia Ferrari"
      },
      "currentPoints": 152,
      "projectedPoints": 167,
      "currentPosition": 3,
      "projectedPosition": 3,
      "delta": 15
    },
    {
      "driver": {
        "driverId": "hamilton-lewis",
        "constructorId": "ferrari",
        "number": "44",
        "tla": "HAM",
        "name": "Lewis Hamilton",
        "team": "Scuderia Ferrari"
      },
      "currentPoints": 131,
      "projectedPoints": 143,
      "currentPosition": 4,
      "projectedPosition": 4,
      "delta": 12
    },
    {
      "driver": {
        "driverId": "russell-george",
        "constructorId": "mercedes",
        "number": "63",
        "tla": "RUS",
        "name": "George Russell",
        "team": "Mercedes-AMG Petronas F1 Team"
      },
      "currentPoints": 118,
      "projectedPoints": 118,
      "currentPosition": 5,
      "projectedPosition": 5,
      "delta": 0
    }
  ]
}

classifiedresultsClassified Resultsanalytics

Per update

Post-race classified positions from the official F1 SPFeed (fires once after race end).

Sample payload
json
{
  "feed": "classifiedresults",
  "sessionId": "9560",
  "utc": "2026-06-08T14:32:18.441Z",
  "drivers": [
    {
      "driverId": "norris-lando",
      "constructorId": "mclaren",
      "number": "4",
      "tla": "NOR",
      "name": "Lando Norris",
      "team": "McLaren F1 Team",
      "classifiedPosition": "1",
      "gridPosition": "1",
      "timeDiffToFastest": "0.000"
    },
    {
      "driverId": "verstappen-max",
      "constructorId": "red-bull-racing",
      "number": "1",
      "tla": "VER",
      "name": "Max Verstappen",
      "team": "Red Bull Racing",
      "classifiedPosition": "2",
      "gridPosition": "1",
      "timeDiffToFastest": "0.219"
    }
  ]
}

racesummaryRace Summaryanalytics

Once, post-race · Race, Sprint

Post-race telemetry summary with aggregate metrics and links to full telemetry endpoints.

AnalyticsModels reference