コンテンツにスキップ

NEAT推定API

ステップ数とワークプロファイル信号を、運動以外のカロリー消費とリスク軽減に関するガイダンスに変換します。

エンドポイント

  • GET /api/v1/fitness/neat-estimate
  • POST /api/v1/fitness/neat-estimate/post

パラメータ

名前 必須 パラメータ 説明
steps_per_day 整数 (0-60000) はい クエリ/ボディ 1日のステップ数。
job_type 文字列 はい クエリ/ボディ sedentary, active, manual
body_weight 数値 (35-250) はい クエリ/ボディ 体重(kg)。
lang 文字列 いいえ クエリ レスポンス言語 (en, es, de, fr, pt, ja, hi, ar)。

このエンドポイントを使用する理由

  • NEATがエネルギーバランスに与える貢献を定量化する。
  • 低い活動パターンから生じるリスクを検出する。
  • ユーザーにステップ数に基づいた目標値を明確に提示する。

開始する

リクエストの例

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}'

レスポンスの例

備考

以下のレスポンス例は、デモンストレーションのみを目的としています。 このエンドポイントに対してライブリクエストを送信して、完全な、リアルタイム、および可能性のあるより詳細なJSON構造を取得してください。

{
  "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"}
}

製品のポジショニング

アクティビティコーチングアプリ、体重管理プログラム、ウェアラブルダッシュボードに最適です。

注意

job_typeは、sedentaryactive、またはmanualのいずれかである必要があります。

推奨されるエンドポイント