コンテンツにスキップ

BSA計算API

体表面積(BSA)を計算し、選択された計算式の結果と、異なる計算式の比較値を返します。

エンドポイント

  • GET /api/v1/bsa-calculator
  • POST /api/v1/bsa-calculator/post

パラメータ

名前 タイプ 必須 イン 説明
weight 数値 はい クエリ/ボディ 体重(kg メトリック、lb 帝国単位)。
height 数値 はい クエリ/ボディ 身長(cm メトリック、in 帝国単位)。
unit 文字列(metricimperial いいえ クエリ/ボディ 入力単位モード。デフォルトは metric
formula 文字列 いいえ クエリ/ボディ du_boismostellerhaycockgehan_georgefujimoto
lang 文字列 いいえ クエリ レスポンス言語(enesdefrptjahiar)。

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

  • 投与や臨床計算におけるBSAを標準化する。
  • 1つのレスポンスで計算式のばらつきを比較する。
  • 文脈を考慮した安全な意思決定支援ダッシュボードを構築する。

開始する

リクエストの例

```bash
curl -X GET "https://api.hefitapi.com/api/v1/bsa-calculator?weight=78&height=175&unit=metric&formula=mosteller&lang=en" \
  -H "X-API-Key: YOUR_API_KEY"

curl -X POST "https://api.hefitapi.com/api/v1/bsa-calculator/post?lang=en" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{"weight":78,"height":175,"unit":"metric","formula":"mosteller"}'
## レスポンスの例

!!! info
    以下のレスポンスの例は、あくまでデモンストレーション用です。
    このエンドポイントに実際のリクエストを送信することで、完全でリアルタイム、および可能性のあるより詳細なJSON構造を取得できます。
{
  "bsa_m2": 1.9467,
  "formula_used": "mosteller",
  "formula_comparison_m2": {
    "du_bois": 1.9442,
    "mosteller": 1.9467,
    "haycock": 1.9505,
    "gehan_george": 1.9549,
    "fujimoto": 1.9213
  },
  "bsa_band": "moderate",
  "bsa_band_label": "Moderate",
  "clinical_context": "Mosteller is commonly used in bedside workflows.",
  "action_plan": ["Cross-check formula if high-risk dosing is planned"],
  "_enterprise": {
    "client": "Acme Health",
    "plan": "pro",
    "request_id": "7ab38f5d39a4d702",
    "quota": 120,
    "usage_tracking": true
  },
  "_api_metadata_": {
    "endpoint_name": "bsa_calculator",
    "response_language": "en"
  }
}
```

市場でのポジショニング

腫瘍治療の用量調整、術前計算、および臨床意思決定のためのSaaSに有用。

注意

formula の検証は厳格です。サポートされていない計算式名はHTTP 400を返します。

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