Healthcare Analytics API

Integrate India's most comprehensive hospital cost database

Anonymized, aggregated cost intelligence from verified patient bills. Built for insurers, consultants, and health-tech companies.

API Plans

Starter

Startups & researchers

₹5,000

/month

1,000 calls/month
Popular

Professional

Insurance companies & TPAs

₹20,000

/month

10,000 calls/month

Enterprise

Hospital chains & policy researchers

₹50,000

/month

1,00,000 calls/month

API Reference

GET/api/b2b/costs/:treatmentSlug/:city

Cost percentile statistics (p10–p90, mean, median) for a treatment in a city

{
  "data": {
    "treatment": {
      "name": "Knee Replacement Surgery"
    },
    "city": "Delhi",
    "sampleSize": 47,
    "statistics": {
      "mean": 185000,
      "median": 172000,
      "p10": 95000,
      "p25": 130000,
      "p75": 240000,
      "p90": 310000
    }
  }
}
GET/api/b2b/outcomes/:hospitalId/:treatmentId

ClearMed Score and outcome components for a specific hospital-treatment pair

{
  "data": {
    "hospital": {
      "name": "Apollo Hospital",
      "city": "Delhi"
    },
    "score": {
      "overall": 7.8,
      "components": {
        "patientSatisfaction": 2.1,
        "costEfficiency": 1.7,
        "successRate": 1.9
      },
      "isReliable": true
    }
  }
}
GET/api/b2b/bulk/costs?city=Mumbai

Bulk cost data for all treatments (Professional+ plan only)

{
  "data": [
    {
      "treatment": {
        "name": "Angioplasty"
      },
      "avg": 285000,
      "min": 180000,
      "max": 520000,
      "n": 23
    },
    {
      "treatment": {
        "name": "Knee Replacement"
      },
      "avg": 185000,
      "min": 95000,
      "max": 310000,
      "n": 47
    }
  ]
}

Authentication:

curl -H "X-Api-Key: cm_your_api_key" \
https://api.clearmed.online/api/b2b/costs/knee-replacement/Delhi

Request API Access

Our team will review and provision your API key within 24 hours.