/v1/split-to-watts
Watts from a 500 m split
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/rowing-api/v1/split-to-watts" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rowing-api/v1/split-to-watts", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rowing-api/v1/split-to-watts");
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/rowing-api/v1/split-to-watts",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "On a Concept2 erg the power is fixed by the pace, not the rate: watts = 2.80 ÷ pace³, where the pace is the seconds taken per metre (the 500 m split ÷ 500). A 2:00 split (120 s / 500 m = 0.24 s/m) is about 202 W. Because power goes as the inverse cube of pace, small split improvements cost a lot of watts — pulling 1:50 instead of 2:00 is roughly 270 W, not 220.",
"watts": 202.5,
"inputs": {
"split_seconds_500m": 120
},
"split_formatted": "2:00.0",
"pace_seconds_per_m": 0.24
},
"meta": {
"timestamp": "2026-06-07T08:17:52.685Z",
"request_id": "e440ec6d-c84a-425a-97bf-3de606ce4422"
},
"status": "ok",
"message": "Split to watts",
"success": true
}