Zum Inhalt springen
GET /v1/tdee

Total daily energy

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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