/v1/calories
Calories from watts (Concept2)
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/rowing-api/v1/calories" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rowing-api/v1/calories", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rowing-api/v1/calories");
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/calories",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Concept2 estimates calories from power, not pace: Cal/hr = (watts × 4 × 0.8604) + 300. The +300 is a fixed resting-metabolism term, which is why even an easy paddle burns a baseline rate and why the erg's calorie count runs higher than pure mechanical work. 200 W is about 988 Cal/hr; over 30 minutes that is roughly 494 Cal. It is a machine estimate, not a substitute for indirect calorimetry.",
"inputs": {
"watts": 200,
"duration_min": 30
},
"total_calories": 494.2,
"calories_per_hour": 988.3
},
"meta": {
"timestamp": "2026-06-07T08:17:52.585Z",
"request_id": "bdbe1d6d-ddff-4fdb-b429-8aca94b0d5f8"
},
"status": "ok",
"message": "Calories",
"success": true
}