Skip to content
Last updated

First call in 5 minutes

1. Get your API key

Retrieve your API key from the Integration section under Settings in the JondaX client portal.

2. Configure your callback

On the Integration page, set your Endpoint URL and optionally an authentication header name + value so JondaX can authenticate with your server.

3. Upload a file

curl --location 'https://app.jondax.eu/api/master?module=pathology' \
--header 'Authorization: Bearer <JONDAX_API_KEY>' \
--form 'deviceImage=@"/path/to/lab-report.pdf"'

4. Receive confirmation

The API responds immediately with an UploadId for each uploaded file:

{
  "success": true,
  "data": {
    "type": "pathology",
    "status": "uploaded",
    "uploads": [
      {
        "uploadId": "a71fd99c-f510-4226-82ce-c50028e71505",
        "fileName": "E46UNRB_96dpi_1.png",
        "message": "File uploaded successfully"
      }
    ],
    "filesCount": 1,
    "message": "1 pathology file(s) uploaded successfully"
  }
}

5. Receive results at your callback

JondaX POSTs the structured output to the Endpoint URL you configured. The format (JSON, HL7, FHIR) and delivery method depend on your Integration page settings.