? GPRS Tracking: Active
Support | Node: DSM Central

SemaNami Ecosystem API

The SemaNami API allows hospital systems (HMS/EMR), governments, and partners to connect with digital health infrastructure. Through this API you can trigger emergencies, request medical advice, and integrate patient data more securely (AES-256).

Our standard follows HL7® FHIR® principles for global interoperability.

Authentication

All API requests require X-API-KEY in the header. Request your key via the UNIDA TECH LIMITED dashboard.

curl -X GET "https://api.semanamimi.com/v1/status" \
     -H "X-API-KEY: your_api_key_here" \
     -H "Content-Type: application/json"
POST

Request Tele-Consult

Initiate a video consultation request between a patient and a doctor.

{
  "patient_id": "SN-9982",
  "department": "Cardiology",
  "urgency": "high",
  "callback_url": "https://your-hms.com/api/webhooks"
}
POST

Trigger Emergency Alert

Send emergency alerts to the nearest ambulance and health center using GPRS tracking.

{
  "location": {
    "lat": -6.7924,
    "lng": 39.2083
  },
  "type": "Ambulance",
  "patient_info": "Trauma - Severe Bleeding"
}