コンテンツにスキップ

体格指数API

年齢層を考慮した解釈を用いて、体格指数による体格の割合を推定します。

エンドポイント

  • GET /api/v1/ponderal-index
  • POST /api/v1/ponderal-index/post

パラメータ

名前 必須 Query/Body 説明
weight 数値 はい Query/Body 体重の値。
height 数値 はい Query/Body 身長の値。
age_group 文字列 いいえ Query/Body adult (デフォルト) または infant
unit 文字列 いいえ Query/Body metric (デフォルト) または imperial
height_unit 文字列 いいえ Query/Body メトリックモードの場合: m (デフォルト) または cm
lang 文字列 いいえ Query レスポンス言語 (en,es,de,fr,pt,ja,hi,ar)。

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

  • BMIを超えた、体格の割合に関する洞察を提供します。
  • 乳児と成人の解釈バンドをサポートします。
  • ワークフローのモニタリングのためのガイダンスフィールドを提供します。

始めましょう

リクエストの例

curl -X GET "https://api.hefitapi.com/api/v1/ponderal-index?weight=74&height=1.75&age_group=adult&unit=metric&height_unit=m&lang=en" \
  -H "X-API-Key: YOUR_API_KEY"
curl -X POST "https://api.hefitapi.com/api/v1/ponderal-index/post?lang=en" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{"weight":9.2,"height":72,"age_group":"infant","unit":"metric","height_unit":"cm"}'

レスポンスの例

Info

以下のレスポンスの例は、デモンストレーションのみを目的としています。 このエンドポイントにライブリクエストを送信して、完全なリアルタイム、および潜在的に豊富なJSON構造を受け取ります。

{
  "ponderal_index": 13.81,
  "interpretation": "Normal weight",
  "normal_range": "11-15",
  "unit": "metric",
  "risk_band": "target",
  "risk_band_label": "Target",
  "risk_signal": "Body proportionality is within expected range.",
  "action_plan": ["Continue balanced monitoring strategy"],
  "monitoring_plan": "Reassess with growth/body-composition context.",
  "_enterprise": {"client": "Acme Health", "plan": "pro", "request_id": "95ee056d96ad3c84", "quota": 120, "usage_tracking": true},
  "_api_metadata_": {"endpoint_name": "ponderal_index", "response_language": "en"}
}

製品のポジショニング

臨床計算機、小児用ツール、および体組成プラットフォームに役立ちます。

注意

メトリックモードの場合、身長をセンチメートルで渡す際に、height_unit=cmを設定してください。

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