Skip to main content
GET
/
api
/
v1
/
emr
/
medical-records
/
{id}
curl -X GET "https://api.nevatal.com/api/v1/emr/medical-records/rec_001" \
  -H "Authorization: Bearer nvtl_your_api_key"
{
  "id": "rec_001",
  "appointmentId": "apt_xyz789",
  "patientId": "pat_abc123",
  "templateId": "tmpl_general_consult",
  "template": {
    "name": "Consulta General"
  },
  "fields": {
    "chiefComplaint": "Dolor de muela",
    "diagnosis": "Caries dental",
    "treatment": "Restauración con resina",
    "notes": "Paciente presenta caries en premolar superior derecho"
  },
  "createdBy": "usr_doctor456",
  "createdAt": "2025-04-01T09:30:00Z",
  "updatedAt": "2025-04-01T09:30:00Z"
}

Path Parameters

id
string
required
The medical record ID
curl -X GET "https://api.nevatal.com/api/v1/emr/medical-records/rec_001" \
  -H "Authorization: Bearer nvtl_your_api_key"
{
  "id": "rec_001",
  "appointmentId": "apt_xyz789",
  "patientId": "pat_abc123",
  "templateId": "tmpl_general_consult",
  "template": {
    "name": "Consulta General"
  },
  "fields": {
    "chiefComplaint": "Dolor de muela",
    "diagnosis": "Caries dental",
    "treatment": "Restauración con resina",
    "notes": "Paciente presenta caries en premolar superior derecho"
  },
  "createdBy": "usr_doctor456",
  "createdAt": "2025-04-01T09:30:00Z",
  "updatedAt": "2025-04-01T09:30:00Z"
}