NEAT Estimate API¶
Convert step and work-profile signals into non-exercise calorie burn and compensation-risk guidance.
Endpoint¶
GET /api/v1/fitness/neat-estimatePOST /api/v1/fitness/neat-estimate/post
Parameters¶
| Name | Type | Required | In | Description |
|---|---|---|---|---|
steps_per_day | integer (0-60000) | Yes | Query/Body | Daily step count. |
job_type | string | Yes | Query/Body | sedentary,active,manual. |
body_weight | number (35-250) | Yes | Query/Body | Body weight in kg. |
lang | string | No | Query | Response language (en,es,de,fr,pt,ja,hi,ar). |
Why Use This Endpoint¶
- Quantify NEAT contribution to energy balance.
- Detect compensation risk from low movement patterns.
- Provide clear step-based boost targets to users.
Request Example¶
curl -X GET "https://api.hefitapi.com/api/v1/fitness/neat-estimate?steps_per_day=7200&job_type=sedentary&body_weight=83&lang=en" \
-H "X-API-Key: YOUR_API_KEY"
curl -X POST "https://api.hefitapi.com/api/v1/fitness/neat-estimate/post?lang=en" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"steps_per_day":12000,"job_type":"active","body_weight":74}'
Response Example¶
Info
The response example below is for demonstration purposes only. Make a live request to this endpoint to receive the full, real-time, and potentially richer JSON structure.
{
"steps_per_day": 7200,
"job_type": "sedentary",
"job_type_label": "Sedentary",
"body_weight_kg": 83.0,
"estimated_daily_neat_burn_kcal": 239,
"metabolic_compensation_risk": {
"level": "moderate",
"level_label": "Moderate",
"insight": "Current NEAT output may under-support energy balance goals."
},
"activity_boost_recommendation": {
"target_extra_steps": 1800,
"projected_neat_gain_kcal": 60,
"execution_note": "Add short post-meal walks and movement breaks."
},
"neat_efficiency": {"kcal_per_1000_steps": 33.2, "job_multiplier": 0.8},
"recommendations": ["Increase non-exercise movement in consistent blocks"],
"confidence_score": 91,
"summary": "Moderate compensation risk; incremental step increases recommended.",
"language": "en",
"_enterprise": {"client": "Acme Health", "plan": "pro", "request_id": "7790c953fa630f1e", "quota": 120, "usage_tracking": true},
"_api_metadata_": {"endpoint_name": "fitness_neat_estimate", "response_language": "en"}
}
Product Positioning¶
Excellent for activity coaching apps, weight-management programs, and wearable dashboards.
Note
job_type must be one of sedentary, active, or manual.
Recommended Endpoints¶
GET /api/v1/fitness/vo2max-estimate- Vo2Max Estimate APIGET /api/v1/fitness/workout-calorie-estimate- Workout Calorie Estimate APIGET /api/v1/bmi- Bmi APIGET /api/v1/tdee- Tdee APIGET /api/v1/bmr- Bmr APIGET /api/v1/protein-calculator- Protein Calculator API