Upload DICOMs

Learn how to upload your DICOMs with the /studies API.

Related Guides: For X-Rays , For CTs

Overview

You can use the /studies API to upload DICOM images. The API accepts DICOM files for analysis. Ensure that the files adhere to the specified DICOM standards and include all necessary metadata.

Note: You can also use the /upload API to upload DICOMs. The schema, request, and response formats are the same.

API Format

POST /studies

Request Formats

curl -X POST \\
-L 'Base_URL/studies/' \\
-H 'Content-Type: multipart/form-data' \\
-H 'Authorization: Token <PASTE_YOUR_TOKEN>' \\
-H 'Source: <PASTE_YOUR_SOURCE>' \\
-H 'User-Agent: <YOUR_USER_AGENT>' \\
-F 'file_1=@"</path/to/your/dicom_file1.dcm>"' \\
-F 'file_2=@"</path/to/your/dicom_file2.dcm>"' \\
-F 'file_3=@"</path/to/your/dicom_file3.dcm>"'

Last updated