Skip to main content

Medical Exam

Medical Exam API

GET /patients/{id}/exams

This API provides information about the medical exams conducted on a specific patient. These exams encompass several key elements:

  • PDF Report: Each medical exam comes with an associated report in PDF format. This report furnishes details about the exam's outcomes, diagnoses made by healthcare professionals, and any pertinent observations. The PDF report enables structured and legible access to important medical information.
  • Images: In addition to the PDF report, the API also grants access to images captured during the medical exam. These images may encompass X-rays, MRIs, CT scans, or other pertinent medical images. They offer a visual representation of the studied areas of the body.
  • PACS Viewer Access: The API provides access to the PACS (Picture Archiving and Communication System) viewer. This system allows for efficient visualization and management of medical images. Healthcare professionals can utilize this viewer to examine images in detail, make comparisons with previous exams, and conduct a more precise diagnosis.

In essence, the API serves as a valuable tool for accessing and managing comprehensive information related to a patient's medical exams. It offers both the medical report in PDF format for in-depth information retrieval and the images along with PACS viewer access for a more thorough evaluation by healthcare professionals.

URI Parameters

  • patient_id: Patient's identifier.

Query Parameters

  • start_date: represents the starting date from which you want to retrieve exams (formatted as "yyyy-mm-dd").
  • end_date: represents the ending date until which you want to retrieve exams (formatted as "yyyy-mm-dd").

Response:

Code 200
 {
"exams": [
{
"service": "COMPUTED TOMOGRAPHY (TAC)",
"date": "2022-11-07",
"pdf_report": "https://www.osana.com/exams/45569cef-139f-4579-9c01-9738e1987c48.pdf",
"Pacs": [
{
"images": "https://pacsweb2.com.ar/osimis-viewer/app/index.html?exam=52f118b3-c562c0e9-628d1ac4-4ab89706-4b352622",
"dicom": "https://pacsweb2.com.ar/exams/52f118b3-c562c0e9-628d1ac4-4ab89706-4b352622/archive"
},
{
"images": "https://pacsweb2.com.ar/osimis-viewer/app/index.html?exam=ecb8c731-df954bbb-6577e3f9-c6e52fdf-3ae0cf3d",
"dicom": "https://pacsweb2.com.ar/exams/ecb8c731-df954bbb-6577e3f9-c6e52fdf-3ae0cf3d/archive"
}
]
}
]
}