Skip to main content
GET
/
api
/
medical-info
/
latest
curl -X GET "https://api.mediguide.com/api/medical-info/latest?userId=123"
{
  "id": 456,
  "user_id": 123,
  "glucose": 95,
  "oxygen_blood": 98,
  "blood_pressure_systolic": 120,
  "blood_pressure_diastolic": 80,
  "temperature": 98.6,
  "age": 35,
  "height": 175,
  "weight": 70,
  "respiratory_rate": 16,
  "blood_type": "A+",
  "heart_rate": 72,
  "created_at": "2026-03-05T10:30:00.000Z"
}

Query Parameters

userId
integer
required
The ID of the user whose latest medical record should be retrieved

Response

id
integer
The unique identifier for the medical record
user_id
integer
The ID of the user this record belongs to
glucose
number
Blood glucose level (mg/dL)
oxygen_blood
number
Blood oxygen saturation level (%)
blood_pressure_systolic
number
Systolic blood pressure (mmHg)
blood_pressure_diastolic
number
Diastolic blood pressure (mmHg)
temperature
number
Body temperature (°F or °C)
age
integer
Patient’s age in years
height
number
Patient’s height (cm or inches)
weight
number
Patient’s weight (kg or lbs)
respiratory_rate
number
Respiratory rate (breaths per minute)
blood_type
string
Blood type (e.g., A+, B-, O+, AB-)
heart_rate
number
Heart rate (beats per minute)
created_at
timestamp
The timestamp when the record was created
curl -X GET "https://api.mediguide.com/api/medical-info/latest?userId=123"
{
  "id": 456,
  "user_id": 123,
  "glucose": 95,
  "oxygen_blood": 98,
  "blood_pressure_systolic": 120,
  "blood_pressure_diastolic": 80,
  "temperature": 98.6,
  "age": 35,
  "height": 175,
  "weight": 70,
  "respiratory_rate": 16,
  "blood_type": "A+",
  "heart_rate": 72,
  "created_at": "2026-03-05T10:30:00.000Z"
}

Build docs developers (and LLMs) love