/v1/meta
Spec
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/openf1-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/openf1-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/openf1-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"service": "openf1-api",
"endpoints": {
"GET /v1/pit": "Pit stops (session_key=, driver_number=).",
"GET /v1/laps": "Lap times (session_key=, driver_number=, lap_number=).",
"GET /v1/meta": "This document.",
"GET /v1/stints": "Tyre stints (session_key=, driver_number=).",
"GET /v1/drivers": "Drivers in a session (session_key=).",
"GET /v1/weather": "Track weather (session_key=).",
"GET /v1/meetings": "Race weekends (year=, country=).",
"GET /v1/sessions": "Sessions (year=, country=, session_name=, meeting_key=).",
"GET /v1/team-radio": "Team radio clips (session_key=, driver_number=).",
"GET /v1/race-control": "Race-control messages (session_key=)."
},
"description": "Formula 1 live timing & telemetry via OpenF1: race weekends and sessions, drivers in a session, lap times with sector splits and speed traps, pit stops, tyre stints, weather, race-control messages and team radio. Real data, no key."
},
"meta": {
"timestamp": "2026-06-07T16:46:15.146Z",
"request_id": "5f49b257-fad1-4c84-892e-9ec0dac09b02"
},
"status": "ok",
"message": "Meta",
"success": true
}