Feed CatalogTelemetry

Telemetry

live

Where the cars are, in real time. telemetry.driver-tracker 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) and precise position traces are not live-deliverable. They are reconstructed after the session and served via the Telemetry REST API on the Custom tier — see results.race-summary under Results & Standings for the post-race entry point.
Circuit de Spa-Francorchamps
A track map drawn straight from the position channels — one clean lap of Spa-Francorchamps, reconstructed from our own telemetry. Every circuit we cover has one.
Feed IDTierCadenceDescription
telemetry.driver-trackerlivePer updateLow-resolution live position (x/y/z).
telemetry.track-positionlive~1/secEvery car's live position on the circuit — lap fraction plus x/y track coordinates — reconstructed each second from timing.

Subscribe with the feedId via webhook or SSE. The badge shows the feed's access class: free feeds are open to every plan, live feeds require the Developer plan, and analytics feeds require the Custom plan.

telemetry.driver-trackerDriver Trackerlive

Per update

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

Sample payload
json
{
  "feed": "telemetry.driver-tracker",
  "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,
      "bestLapTime": {
        "display": "1:27.412",
        "ms": 87412
      },
      "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,
      "bestLapTime": {
        "display": "1:27.831",
        "ms": 87831
      },
      "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,
      "bestLapTime": {
        "display": "1:28.001",
        "ms": 88001
      },
      "inPit": false
    }
  ]
}

telemetry.track-positionVirtual Track Positionlive

~1/sec

Every car's live position on the circuit — lap fraction plus x/y track coordinates — reconstructed each second from timing.

Backed by: track_position_arc_filter. How the models work →

WeatherAnalytics