Strategy & Pit Data
live3 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 ID | Name | Cadence | Description |
|---|---|---|---|
currenttyres | Current Tyres | Per pit stop | Current compound fitted per driver and whether a new tyre set was used. |
tyrehistory | Tyre History | Per pit stop | Full stint history: compound, lap fitted, total laps on tyre for each stint. Builds the complete strategy picture. |
pitlanetimes | Pit Lane Times | Per pit stop | Pit stop duration in milliseconds, with pit-in and pit-out lap numbers. |
Sample payloads
currenttyres — per pit stopjson
{
"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 stopjson
{
"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 stopjson
{
"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
}
]
}