{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":["tabs","tab"]},"type":"markdown"},"seo":{"title":"Quickstart — JondaX API Docs","description":"Make your first JondaX API call in 5 minutes. Step-by-step guides for both the Pathology and Medical Device modules.","llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"quickstart","__idx":0},"children":["Quickstart"]},{"$$mdtype":"Tag","name":"Tabs","attributes":{"size":"medium"},"children":[{"$$mdtype":"Tag","name":"div","attributes":{"label":"Pathology","disable":false},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"first-call-in-5-minutes","__idx":1},"children":["First call in 5 minutes"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"1-get-your-api-key","__idx":2},"children":["1. Get your API key"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Retrieve your API key from the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Integration"]}," section under ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Settings"]}," in the JondaX client portal."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"2-configure-your-callback","__idx":3},"children":["2. Configure your callback"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["On the Integration page, set your ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Endpoint URL"]}," and optionally an authentication header name + value so JondaX can authenticate with your server."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"3-upload-a-file","__idx":4},"children":["3. Upload a file"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl --location 'https://app.jondax.eu/api/master?module=pathology' \\\n--header 'Authorization: Bearer <JONDAX_API_KEY>' \\\n--form 'deviceImage=@\"/path/to/lab-report.pdf\"'\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"4-receive-confirmation","__idx":5},"children":["4. Receive confirmation"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The API responds immediately with an ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["UploadId"]}," for each uploaded file:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"success\": true,\n  \"data\": {\n    \"type\": \"pathology\",\n    \"status\": \"uploaded\",\n    \"uploads\": [\n      {\n        \"uploadId\": \"a71fd99c-f510-4226-82ce-c50028e71505\",\n        \"fileName\": \"E46UNRB_96dpi_1.png\",\n        \"message\": \"File uploaded successfully\"\n      }\n    ],\n    \"filesCount\": 1,\n    \"message\": \"1 pathology file(s) uploaded successfully\"\n  }\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"5-receive-results-at-your-callback","__idx":6},"children":["5. Receive results at your callback"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["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."]}]},{"$$mdtype":"Tag","name":"div","attributes":{"label":"Medical Device","disable":false},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"first-call-in-5-minutes-1","__idx":7},"children":["First call in 5 minutes"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"1-get-your-api-key-1","__idx":8},"children":["1. Get your API key"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Retrieve your API key from the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Integration"]}," section under ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Settings"]}," in the JondaX client portal."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"2-upload-a-device-image","__idx":9},"children":["2. Upload a device image"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl --location 'https://app.jondax.eu/api/master?module=medical' \\\n--header 'Authorization: Bearer <JONDAX_API_KEY>' \\\n--form 'deviceImage=@\"/path/to/device-reading.png\"'\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"3-receive-extracted-data-immediately","__idx":10},"children":["3. Receive extracted data immediately"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"success\": true,\n  \"data\": {\n    \"type\": \"medical\",\n    \"status\": \"extracted\",\n    \"data\": {\n      \"success\": true,\n      \"deviceType\": \"pulse-oximeter\",\n      \"data\": {\n        \"SpO2\": \"98%\",\n        \"pulseRate\": \"87 BPM\"\n      },\n      \"confidence\": 0.85,\n      \"timestamp\": \"2026-04-09T03:50:13.655Z\",\n      \"processingTime\": \"1570ms\"\n    },\n    \"message\": \"Medical data extracted successfully from PNG file\"\n  }\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["No callback configuration required for the Medical Device module."]}]}]}]},"headings":[{"value":"Quickstart","id":"quickstart","depth":1},{"value":"First call in 5 minutes","id":"first-call-in-5-minutes","depth":2},{"value":"1. Get your API key","id":"1-get-your-api-key","depth":3},{"value":"2. Configure your callback","id":"2-configure-your-callback","depth":3},{"value":"3. Upload a file","id":"3-upload-a-file","depth":3},{"value":"4. Receive confirmation","id":"4-receive-confirmation","depth":3},{"value":"5. Receive results at your callback","id":"5-receive-results-at-your-callback","depth":3},{"value":"First call in 5 minutes","id":"first-call-in-5-minutes-1","depth":2},{"value":"1. Get your API key","id":"1-get-your-api-key-1","depth":3},{"value":"2. Upload a device image","id":"2-upload-a-device-image","depth":3},{"value":"3. Receive extracted data immediately","id":"3-receive-extracted-data-immediately","depth":3}],"frontmatter":{"seo":{"title":"Quickstart — JondaX API Docs","description":"Make your first JondaX API call in 5 minutes. Step-by-step guides for both the Pathology and Medical Device modules."}},"lastModified":"2026-07-07T05:23:45.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/docs/quickstart","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}