Feed CatalogStrategy & Pit Data

Strategy & Pit Data

live

3 feeds covering tyre strategy and pit stop data. Together they provide a complete picture of each driver's stint history, current compound, and pit stop durations.

Feed IDNameCadenceDescription
currenttyresCurrent TyresPer pit stopCurrent compound fitted per driver and whether a new tyre set was used.
tyrehistoryTyre HistoryPer pit stopFull stint history: compound, lap fitted, total laps on tyre for each stint. Builds the complete strategy picture.
pitlanetimesPit Lane TimesPer pit stopPit stop duration in milliseconds, with pit-in and pit-out lap numbers.

Sample payloads

currenttyres — per pit stop
json
{
  "feed": "currenttyres",
  "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",
      "compound": "HARD",
      "new": false,
      "age": 28
    },
    {
      "driverId": "verstappen-max",
      "constructorId": "red-bull-racing",
      "number": "1",
      "tla": "VER",
      "name": "Max Verstappen",
      "team": "Red Bull Racing",
      "compound": "HARD",
      "new": false,
      "age": 28
    },
    {
      "driverId": "leclerc-charles",
      "constructorId": "ferrari",
      "number": "16",
      "tla": "LEC",
      "name": "Charles Leclerc",
      "team": "Scuderia Ferrari",
      "compound": "MEDIUM",
      "new": false,
      "age": 8
    },
    {
      "driverId": "hamilton-lewis",
      "constructorId": "ferrari",
      "number": "44",
      "tla": "HAM",
      "name": "Lewis Hamilton",
      "team": "Scuderia Ferrari",
      "compound": "SOFT",
      "new": true,
      "age": 2
    },
    {
      "driverId": "russell-george",
      "constructorId": "mercedes",
      "number": "63",
      "tla": "RUS",
      "name": "George Russell",
      "team": "Mercedes-AMG Petronas F1 Team",
      "compound": "MEDIUM",
      "new": false,
      "age": 14
    }
  ]
}
tyrehistory — per pit stop
json
{
  "feed": "tyrehistory",
  "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",
      "stints": [
        {
          "compound": "SOFT",
          "startLap": 1,
          "endLap": 22,
          "new": true
        },
        {
          "compound": "MEDIUM",
          "startLap": 23,
          "endLap": 48,
          "new": true
        },
        {
          "compound": "HARD",
          "startLap": 49,
          "endLap": 0,
          "new": false
        }
      ]
    },
    {
      "driverId": "verstappen-max",
      "constructorId": "red-bull-racing",
      "number": "1",
      "tla": "VER",
      "name": "Max Verstappen",
      "team": "Red Bull Racing",
      "stints": [
        {
          "compound": "MEDIUM",
          "startLap": 1,
          "endLap": 25,
          "new": true
        },
        {
          "compound": "HARD",
          "startLap": 26,
          "endLap": 0,
          "new": true
        }
      ]
    }
  ]
}
pitlanetimes — per pit stop
json
{
  "feed": "pitlanetimes",
  "sessionId": "9560",
  "utc": "2026-06-08T14:32:18.441Z",
  "stops": [
    {
      "driverId": "leclerc-charles",
      "constructorId": "ferrari",
      "number": "16",
      "tla": "LEC",
      "name": "Charles Leclerc",
      "team": "Scuderia Ferrari",
      "stopNumber": 1,
      "pitInLap": 20,
      "pitOutLap": 21,
      "pitStopTimeMs": 2840,
      "pitLaneTimeMs": 19470
    },
    {
      "driverId": "norris-lando",
      "constructorId": "mclaren",
      "number": "4",
      "tla": "NOR",
      "name": "Lando Norris",
      "team": "McLaren F1 Team",
      "stopNumber": 1,
      "pitInLap": 22,
      "pitOutLap": 23,
      "pitStopTimeMs": 2310,
      "pitLaneTimeMs": 18900
    },
    {
      "driverId": "hamilton-lewis",
      "constructorId": "ferrari",
      "number": "44",
      "tla": "HAM",
      "name": "Lewis Hamilton",
      "team": "Scuderia Ferrari",
      "stopNumber": 1,
      "pitInLap": 24,
      "pitOutLap": 25,
      "pitStopTimeMs": 2980,
      "pitLaneTimeMs": 19810
    }
  ]
}
← Timing & Lap DataRace Control & Events →