A Universal UUID-based Tracking System for Healthcare and Pharmaceutical Industries
- Assigns a unique UUID to every patient record (MRI, lab results, etc.).
- Enables secure, portable, and verifiable health data across borders.
- Assigns a unique UUID to every medicine box, preventing counterfeit drugs.
- REST API for easy integration, verification, and tracking.
- Scalable architecture for global deployments.
pip install .python api/main.py- POST
/patient_record: Create a new patient record - GET
/patient_record/<uuid>: Retrieve a patient record - POST
/medicine_box: Register a new medicine box - GET
/medicine_box/<uuid>: Retrieve a medicine box record
POST /patient_record
Content-Type: application/json
{
"name": "John Doe",
"data": "MRI Scan Result",
"record_type": "MRI"
}{
"record_uuid": "b6c4e0a7-2d0f-4e71-b7bb-3c0c9d3f6c8a"
}MIT