v1

latestOpenAPI 3.0.02026-07-132990743.4 KB
Instances

Get DICOM meta-header

Get the DICOM tags in the meta-header of the DICOM instance. By default, the full format is used, which combines hexadecimal tags with human-readable description.

get/instances/{id}/header

Path parameters

idstring required

Orthanc identifier of the DICOM instance of interest

Query parameters

shortboolean

If present, report the DICOM tags in hexadecimal format

simplifyboolean

If present, report the DICOM tags in human-readable format (using the symbolic name of the tags)

Response

{"stackTrail":"paths:/instances/{id}/header:get:responses:200:content:application/json:schema","oasType":"schema","type":"unknown","description":"JSON object containing the DICOM tags and their associated value","example":{"0002,0000":{"Name":"FileMetaInformationGroupLength","Type":"String","Value":"202"},"0002,0002":{"Name":"MediaStorageSOPClassUID","Type":"String","Value":"1.2.840.10008.5.1.4.1.1.2"},"0002,0003":{"Name":"MediaStorageSOPInstanceUID","Type":"String","Value":"1.3.12.2.1107.5.1.4.54693.30000006100507010800000005269"},"0002,0010":{"Name":"TransferSyntaxUID","Type":"String","Value":"1.2.840.10008.1.2.1"},"0002,0012":{"Name":"ImplementationClassUID","Type":"String","Value":"1.3.6.1.4.1.19291.2.1"},"0002,0013":{"Name":"ImplementationVersionName","Type":"String","Value":"OSIRIX001"},"0002,0016":{"Name":"SourceApplicationEntityTitle","Type":"String","Value":"OSIRIX"}}}

Example response

{
  "0002,0000": {
    "Name": "FileMetaInformationGroupLength",
    "Type": "String",
    "Value": "202"
  },
  "0002,0002": {
    "Name": "MediaStorageSOPClassUID",
    "Type": "String",
    "Value": "1.2.840.10008.5.1.4.1.1.2"
  },
  "0002,0003": {
    "Name": "MediaStorageSOPInstanceUID",
    "Type": "String",
    "Value": "1.3.12.2.1107.5.1.4.54693.30000006100507010800000005269"
  },
  "0002,0010": {
    "Name": "TransferSyntaxUID",
    "Type": "String",
    "Value": "1.2.840.10008.1.2.1"
  },
  "0002,0012": {
    "Name": "ImplementationClassUID",
    "Type": "String",
    "Value": "1.3.6.1.4.1.19291.2.1"
  },
  "0002,0013": {
    "Name": "ImplementationVersionName",
    "Type": "String",
    "Value": "OSIRIX001"
  },
  "0002,0016": {
    "Name": "SourceApplicationEntityTitle",
    "Type": "String",
    "Value": "OSIRIX"
  }
}