/v1/laps
Lap times (sectors, speeds)
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/openf1-api/v1/laps" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/openf1-api/v1/laps", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/openf1-api/v1/laps");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/openf1-api/v1/laps",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"laps": [
{
"i1_speed": 310,
"i2_speed": 317,
"sector_1": 27.82,
"sector_2": 29.008,
"sector_3": 28.136,
"st_speed": 318,
"date_start": "2024-09-01T13:16:28.212000+00:00",
"lap_number": 10,
"lap_duration": 84.964,
"driver_number": 1,
"is_pit_out_lap": false
}
],
"count": 1,
"session_key": "9590"
},
"meta": {
"timestamp": "2026-06-07T16:46:14.439Z",
"request_id": "9bb12f95-7a83-4222-96d6-dcc91776b262"
},
"status": "ok",
"message": "Laps retrieved successfully",
"success": true
}