MyHealth@Eu NCPeH API
0.0.1 - ci-build
150
MyHealth@Eu NCPeH API - Local Development build (v0.0.1) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions
The MyHealth@EU Study Information Retrieval service is a DICOM-compliant service that provides support for DICOMweb-based RESTful services, including QIDO-RS and WADO-RS. This conformance statement outlines the supported DICOM SOP classes, Transfer Syntaxes, and Query/Retrieve capabilities.
SOP Class Name | SOP Class UID | Service Type | Role |
---|---|---|---|
Query/Retrieve Information Model - FIND (Study) | 1.2.840.10008.5.1.4.1.2.2.1 |
QIDO-RS | SCP |
Query/Retrieve Information Model - FIND (Series) | 1.2.840.10008.5.1.4.1.2.2.1 |
QIDO-RS | SCP |
Web Access to DICOM Objects (WADO-RS) | 1.2.840.10008.5.1.4.1.2.5.3 |
WADO-RS | SCP |
Description: Provides querying of DICOM studies, series, and instances via RESTful APIs using standard DICOM Query/Retrieve SOP Classes.
/dicom-web/studies
GET
PatientID
: Query based on Patient IDStudyInstanceUID
: Query based on Study Instance UIDModality
: Filter based on modality (e.g., MR
, CT
, XR
)StudyDate
: Filter based on study dateSeriesInstanceUID
: Query specific series within a studyGET /dicom-web/studies?PatientID=123456789&Modality=MR
[
{
"0020000D": { "vr": "UI", "Value": ["1.2.840.113619.2.55.3.2831164356.1234.1578912545.100"] },
"00080020": { "vr": "DA", "Value": ["20220101"] },
"00080061": { "vr": "CS", "Value": ["MR"] },
"00100010": { "vr": "PN", "Value": [{"Alphabetic": "Doe^John"}] },
"00100020": { "vr": "LO", "Value": ["123456789"] },
"00081030": { "vr": "LO", "Value": ["Brain MRI with Contrast"] }
}
]
Description: Provides retrieval of DICOM objects (e.g., studies, series, instances) via RESTful APIs. The system supports retrieval of images, metadata, and bulk pixel data using HTTP methods.
/dicom-web/studies/{StudyInstanceUID}/series/{SeriesInstanceUID}/instances
GET
GET /dicom-web/studies/1.2.840.113619.2.55.3.2831164356.1234.1578912545.100/series/1.2.840.113619.2.55.3.2831164356.1234.1578912545.200/instances
The system supports the following HTTP response codes:
Give me the studies of this Patient
`GET $DICOMWeb-server/studies?PatientID=123456789
[
{
"0020000D": {
"vr": "UI",
"Value": [
"1.2.840.113619.2.55.3.2831164356.1234.1578912545.100"
]
},
"00080020": {
"vr": "DA",
"Value": [
"20220101"
]
},
"00080030": {
"vr": "TM",
"Value": [
"090000"
]
},
"00080061": {
"vr": "CS",
"Value": [
"MR"
]
},
"00100010": {
"vr": "PN",
"Value": [
{
"Alphabetic": "Doe^John"
}
]
},
"00100020": {
"vr": "LO",
"Value": [
"123456789"
]
},
"00200010": {
"vr": "SH",
"Value": [
"STUDY12345"
]
},
"00081030": {
"vr": "LO",
"Value": [
"Brain MRI with Contrast"
]
}
}
]
####### Explanation of Response Fields:
0020000D
(Study Instance UID):
vr: "UI"
: Value Representation of UID (Unique Identifier).Value
array contains the Study Instance UID, which uniquely identifies the study.00080020
(Study Date):
vr: "DA"
: Value Representation of Date.Value
array contains the study date (20220101
represents January 1, 2022).00080030
(Study Time):
vr: "TM"
: Value Representation of Time.Value
array contains the study time (090000
represents 09:00 AM).00080061
(Modalities in Study):
vr: "CS"
: Value Representation of Code String.Value
array contains the modalities used in the study (e.g., "MR" for MRI).00100010
(Patient's Name):
vr: "PN"
: Value Representation of Person Name.Value
array contains the patient's name ("Doe^John"
means the patient's name is John Doe).00100020
(Patient ID):
vr: "LO"
: Value Representation of Long String.Value
array contains the Patient ID ("123456789"
).00200010
(Study ID):
vr: "SH"
: Value Representation of Short String.Value
array contains the Study ID ("STUDY12345"
).00081030
(Study Description):
vr: "LO"
: Value Representation of Long String.Value
array contains the description of the study ("Brain MRI with Contrast"
).DICOM Tags Used:
0020000D
: Study Instance UID00080020
: Study Date00080030
: Study Time00080061
: Modalities in Study00100010
: Patient's Name00100020
: Patient ID00200010
: Study ID00081030
: Study DescriptionThis JSON response provides essential metadata about the study but does not include the bulk image data (which can be retrieved via different endpoints like WADO-RS
for fetching image instances).