Patient Records

Manage patient folders, medical history, and clinical documentation. Our Patient API is fully compliant with FHIR standards.

List All Patients

GET

Returns a paginated list of patients associated with your facility.

ENDPOINT/v1/patients
import requests

url = "https://api.pugatrinicare.com/v1/patients"
headers = {
    "Authorization": "Bearer YOUR_SECRET_KEY",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
patients = response.json()
print(patients)

Register New Patient

POST

Creates a new patient record in the system.

Parameters

  • first_nameString (Req)
  • last_nameString (Req)
  • date_of_birthISO Date (Req)
  • genderEnum

Example Body

{
  "first_name": "Adebayo",
  "last_name": "Oluwa",
  "date_of_birth": "1992-05-15",
  "gender": "male",
  "phone": "+2348001234567"
}