Metadata

Get series metadata of study

GET https://your.host.lab/artifacts/projects/:project_id/studies/:study_id/series

Getting the metadata of all series (including DICOM and NIfTI) in a study. The API returns an array of struct with series_index, data_type and metadata information. With DICOM, it returns the same metadata as before. With NIfTI it returns the hash of the file.

{
  "error_code": 0,
  "error_message": "OK",
  "server_time": 1676616636,
  "data": [
    {
      "series_index": "hehe.uint8.nii.gz",
      "data_type": "NIFTI",
      "metadata": {
        "location": "1eb1347f8f342a66b94784ec4c7cea71ef652860e6e36c4f14e457263d592d47"
      }
    },
    {
      "series_index": "hehe.1.2.840.113704.9.1000.16.0.20220421110506531.1.2.840.113704.9.1000.16.1.2022042111053450000020001",
      "data_type": "DICOM",
      "metadata": {
        "00080005": {
          "Value": [
            "ISO_IR 100"
          ],
          "vr": "CS"
        },
        "00080020": {
          "Value": [
            "20220421"
          ],
          "vr": "DA"
        },
        "00080030": {
          "Value": [
            "110506.531"
          ],
          "vr": "TM"
        },
        "00080050": {
          "Value": [
            "5688288"
          ],
          "vr": "SH"
        },
        "00080060": {
          "Value": [
            "CT"
          ],
          "vr": "CS"
        },
        "00080070": {
          "Value": [
            "PNMS"
          ],
          "vr": "LO"
        },
        "00080080": {
          "Value": [
            "BENH VIEN DA KHOA QUANG KHOI"
          ],
          "vr": "LO"
        },
        "00080090": {
          "Value": [
            {
              "Alphabetic": ""
            }
          ],
          "vr": "PN"
        },
        "00081010": {
          "Value": [
            ""
          ],
          "vr": "SH"
        },
        "00081030": {
          "Value": [
            ""
          ],
          "vr": "LO"
        },
        "0008103E": {
          "Value": [
            "SO NAO HX"
          ],
          "vr": "LO"
        },
        "00081070": {
          "Value": [
            {
              "Alphabetic": ""
            }
          ],
          "vr": "PN"
        },
        "00081190": {
          "Value": [
            "http://127.0.0.1:8042/dicom-web/studies/1.2.840.113704.9.1000.16.0.20220421110506531/series/1.2.840.113704.9.1000.16.1.2022042111053450000020001"
          ],
          "vr": "UR"
        },
        "00100010": {
          "Value": [
            {
              "Alphabetic": "LE CONG GIUONG 35T"
            }
          ],
          "vr": "PN"
        },
        "00100020": {
          "Value": [
            "22020875"
          ],
          "vr": "LO"
        },
        "00100030": {
          "Value": [
            "19870101"
          ],
          "vr": "DA"
        },
        "00100040": {
          "Value": [
            "M"
          ],
          "vr": "CS"
        },
        "00180015": {
          "Value": [
            "BRAIN"
          ],
          "vr": "CS"
        },
        "00181030": {
          "Value": [
            "XUONG1"
          ],
          "vr": "LO"
        },
        "0020000D": {
          "Value": [
            "1.2.840.113704.9.1000.16.0.20220421110506531"
          ],
          "vr": "UI"
        },
        "0020000E": {
          "Value": [
            "1.2.840.113704.9.1000.16.1.2022042111053450000020001"
          ],
          "vr": "UI"
        },
        "00200010": {
          "Value": [
            "015646"
          ],
          "vr": "SH"
        },
        "00200011": {
          "Value": [
            2
          ],
          "vr": "IS"
        },
        "00200037": {
          "Value": [
            1,
            0,
            0,
            0,
            1,
            -0
          ],
          "vr": "DS"
        },
        "00201209": {
          "Value": [
            1
          ],
          "vr": "IS"
        }
      }
    }
  ]
}

Get series metadata for DICOM instances

GET https://your.host.lab/artifacts/projects/:project_id/studies/:study_id/series/:series_id/metadata

Get series metadata for DICOM series

Get image content for a NIfTI series

GET https://your.host.lab/artifacts/projects/:project_id/studies/:study_id/series/:series_id/nii

Get the Image content of a NIfTI series in a study

Retrieve image frame of a DICOM instance

GET https://your.host.lab/artifacts/projects/:project_id/studies/:study_id/series/:series_id/instances/:instance_id/frames/:frames

Retrieve image frame of a DICOM instance

Last updated