v1

latestOpenAPI 3.0.02026-07-142740323.4 KB
Series

Get series statistics

Get statistics about the given series

get/series/{id}/statistics

Path parameters

idstring required

Orthanc identifier of the series of interest

Response

CountInstancesnumber

Number of child instances within this series

DicomDiskSizestring

Size on the disk of the DICOM instances associated with the series, expressed in bytes

DicomDiskSizeMBnumber

Size on the disk of the DICOM instances associated with the series, expressed in megabytes (MB)

DicomUncompressedSizestring

Size on the disk of the uncompressed DICOM instances associated with the series, expressed in bytes

DicomUncompressedSizeMBnumber

Size on the disk of the uncompressed DICOM instances associated with the series, expressed in megabytes (MB)

DiskSizestring

Size of the series on the disk in bytes, expressed as a string for 64bit compatibility with JSON

DiskSizeMBnumber

Size of the series on the disk, expressed in megabytes (MB)

UncompressedSizestring

Size of the series after decompression in bytes, expressed as a string for 64bit compatibility with JSON

UncompressedSizeMBnumber

Size of the series after decompression, expressed in megabytes (MB). This is different from DiskSizeMB iff StorageCompression is true.

Example response

{
  "CountInstances": 1,
  "DicomDiskSize": "368852",
  "DicomDiskSizeMB": 0,
  "DicomUncompressedSize": "368852",
  "DicomUncompressedSizeMB": 0,
  "DiskSize": "381000",
  "DiskSizeMB": 0,
  "UncompressedSize": "381000",
  "UncompressedSizeMB": 0
}