Feed CatalogTelemetry

Telemetry

live

Where the cars are, in real time. drivertracker streams low-resolution live position (x/y/z) during the session — enough to drive a track map or proximity logic.

Full-resolution per-driver car-data channels (speed, throttle, brake, gear, RPM, DRS) and precise position traces are not live-deliverable. They are reconstructed after the session and served via the Telemetry REST API on the Analytics tier — see racesummary under Results & Standings for the post-race entry point.
Feed IDTierCadenceDescription
drivertrackerlivePer updateLow-resolution live position (x/y/z).

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

drivertrackerDriver Trackerlive

Per update

Low-resolution live position (x/y/z).

Sample payload
json
{
  "feed": "drivertracker",
  "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",
      "position": "1",
      "x": 2847,
      "y": -1204,
      "z": 31,
      "status": 0,
      "bestLapTime": "1:27.412",
      "inPit": false
    },
    {
      "driverId": "verstappen-max",
      "constructorId": "red-bull-racing",
      "number": "1",
      "tla": "VER",
      "name": "Max Verstappen",
      "team": "Red Bull Racing",
      "position": "2",
      "x": 2614,
      "y": -1187,
      "z": 31,
      "status": 0,
      "bestLapTime": "1:27.831",
      "inPit": false
    },
    {
      "driverId": "leclerc-charles",
      "constructorId": "ferrari",
      "number": "16",
      "tla": "LEC",
      "name": "Charles Leclerc",
      "team": "Scuderia Ferrari",
      "position": "3",
      "x": 2391,
      "y": -1163,
      "z": 31,
      "status": 0,
      "bestLapTime": "1:28.001",
      "inPit": false
    }
  ]
}
WeatherAnalytics