inou Health Dossier API

Authentication

All endpoints require a token query parameter - your authentication token (dossier GUID).

Base URL

https://inou.com

Endpoints

GET /api/dossiers

List all patient dossiers accessible to this account.

Parameters:

Example: GET https://inou.com/api/dossiers?token=YOUR_TOKEN

GET /api/studies

List all imaging studies in a dossier.

Parameters:

Example: GET https://inou.com/api/studies?token=YOUR_TOKEN&dossier_guid=DOSSIER_ID

GET /api/series

List all series in a study.

Parameters:

Example: GET https://inou.com/api/series?token=YOUR_TOKEN&dossier_guid=DOSSIER_ID&study_guid=STUDY_ID

GET /api/slices

List all slices in a series with position data.

Parameters:

Example: GET https://inou.com/api/slices?token=YOUR_TOKEN&dossier_guid=DOSSIER_ID&series_guid=SERIES_ID

GET /image/{slice_guid}

Fetch a slice as PNG image.

Parameters:

Example: GET https://inou.com/image/SLICE_GUID?token=YOUR_TOKEN

Default response is JSON. Add &format=text for plain text output.