/v1/tdee
Total daily energy
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/bmr-api/v1/tdee" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bmr-api/v1/tdee", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bmr-api/v1/tdee");
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/bmr-api/v1/tdee",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "TDEE = BMR × activity factor. A ~500 kcal/day deficit or surplus is roughly 0.45 kg per week.",
"inputs": {
"bmr": 1780,
"activity_level": "moderate",
"activity_factor": 1.55
},
"tdee_kcal_day": 2759,
"mild_loss_kcal": 2509,
"maintenance_kcal": 2759,
"weight_gain_kcal": 3259,
"weight_loss_kcal": 2259
},
"meta": {
"timestamp": "2026-06-04T18:38:22.253Z",
"request_id": "9a862609-41ad-41a7-87f2-bfaae208dc84"
},
"status": "ok",
"message": "Total daily energy",
"success": true
}