BRI 計算 API¶
BMI 以外の、中央肥満の評価ワークフローにおける、意味とリスクに関するガイダンスを返します。
エンドポイント¶
GET /api/v1/bri-calculatorPOST /api/v1/bri-calculator/post
パラメータ¶
| 名前 | 型 | 必須 | クエリ/ボディ | 説明 |
|---|---|---|---|---|
height | 数値 | はい | クエリ/ボディ | 身長 (cm、メートル単位、インチ、帝国単位) |
waist | 数値 | はい | クエリ/ボディ | ウエスト (cm、メートル単位、インチ、帝国単位) |
unit | 文字列 (metric,imperial) | いいえ | クエリ/ボディ | 入力モード。 デフォルトは metric です。 |
lang | 文字列 | いいえ | クエリ | レスポンス言語 (en,es,de,fr,pt,ja,hi,ar)。 |
このエンドポイントを使用する理由¶
- BMI 以外の、体積に関するリスクの文脈を追加する。
- 予防プログラムにおける中央肥満をセグメントする。
- BRI のリスクバンドに基づいてモニタリング計画をトリガーする。
リクエスト例¶
curl -X GET "https://api.hefitapi.com/api/v1/bri-calculator?height=175&waist=92&unit=metric&lang=en" \
-H "X-API-Key: YOUR_API_KEY"
curl -X POST "https://api.hefitapi.com/api/v1/bri-calculator/post?lang=en" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"height":175,"waist":92,"unit":"metric"}'
レスポンス例¶
Info
以下のレスポンス例は、デモンストレーションのみを目的としています。 このエンドポイントに対してライブリクエストを実行して、完全な、リアルタイム、および可能性のあるより詳細な JSON 構造を取得してください。
{
"bri": 4.82,
"bri_meaning": "Moderate central adiposity risk",
"risk_band": "moderate",
"risk_band_label": "Moderate",
"risk_signal": "Central adiposity should be monitored.",
"action_plan": ["Reduce waist circumference gradually", "Increase weekly movement"],
"monitoring_plan": "Recheck every 4-8 weeks.",
"_enterprise": {
"client": "Acme Health",
"plan": "pro",
"request_id": "f12bfde4466ebf66",
"quota": 120,
"usage_tracking": true
},
"_api_metadata_": {
"api_name": "Health Fitness API by Dakidarts®",
"endpoint_name": "bri_calculator",
"response_language": "en"
}
}
ビジネス上の利点¶
BRI は、腹部のリスク削減指標に焦点を当てた、保険会社、臨床ウェルネス、およびコーチングプラットフォームにとって有用です。
備考
無効またはゼロ以下の高さ/ウエストの値は、HTTP 400 を返します。
推奨されるエンドポイント¶
GET /api/v1/6mwt-calculator- 6Mwt 計算 APIGET /api/v1/abi-calculator- Abi 計算 APIGET /api/v1/ava-calculator- Ava 計算 APIGET /api/v1/bsa-calculator- Bsa 計算 APIGET /api/v1/carbs-calculator- Carbs 計算 APIGET /api/v1/cholesterol-ratio-calculator- コレステロール比率計算 API