Dhanush008/india-medical-value-travel-mvp
India Medical Value Travel (MVT) Platform – MVP Dataset A comprehensive, structured JSON dataset for building an AI-powered Medical Value Travel platform connecting international patients with Indian hospitals. Overview India is a global leader in medical tourism due to 60–80% lower treatment costs vs US/UK, world-class hospital chains, and government support through initiatives like "Heal in India" and e-Medical Visa. This dataset provides the complete data… See the full description on the dataset page: https://huggingface.co/datasets/Dhanush008/india-medical-value-travel-mvp.
India Medical Value Travel (MVT) Platform – MVP Dataset
A comprehensive, structured JSON dataset for building an AI-powered Medical Value Travel platform connecting international patients with Indian hospitals.
Overview
India is a global leader in medical tourism due to 60–80% lower treatment costs vs US/UK, world-class hospital chains, and government support through initiatives like "Heal in India" and e-Medical Visa. This dataset provides the complete data foundation for an MVP platform that solves:
- No single coordination platform for end-to-end medical travel
- Price opacity across hospitals and treatments
- Language barriers in medical communication
- Safety concerns for international patients
- No post-treatment follow-up after patients return home
Dataset Structure
Key Features
- Cross-referenced IDs: All hospital, treatment, patient, and service IDs are internally consistent
- Realistic pricing: India medical tourism market rates (2025-2026) in USD
- MongoDB/API ready: Structured for direct database seeding
- Rich metadata: Each entity includes detailed attributes beyond the minimum spec
Hospital Chains Covered
Apollo Hospitals, Manipal Hospitals, Fortis Healthcare, Medanta, Max Healthcare, Narayana Health, CARE Hospitals, Kokilaben Dhirubhai Ambani Hospital, Artemis Health Institute
Treatment Categories
Usage
import json
with open('mvt_dataset.json', 'r') as f:
data = json.load(f)
# Access sections
hospitals = data['hospitals']
treatments = data['treatments']
recommendations = data['recommendations']
# Find recommendations for a patient
patient_recs = [r for r in recommendations if r['patient_id'] == 'P001']
# Find hospitals in a city
mumbai_hospitals = [h for h in hospitals if h['city'] == 'Mumbai']
# Find cardiac treatments under $5000
affordable_cardiac = [t for t in treatments
if t['category'] == 'cardiac' and t['avg_cost_usd'] < 5000]Data Quality
- ✅ All cross-references validated (hospital IDs, treatment IDs, patient IDs, service IDs)
- ✅ All cost ranges internally consistent (min ≤ avg ≤ max)
- ✅ All recommendation costs within patient budgets
- ✅ No duplicate IDs
- ✅ No placeholder data
License
MIT
