Zum Inhalt springen
GET /v1/split-to-watts

Watts from a 500 m split

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/rowing-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}