Moroccan Excellence in AI Radiology
NEURARAD is the first AI-driven radiological analysis platform built entirely in Morocco. It connects directly to DICOM streams to provide real-time diagnostic support, volumetric analysis, and anomaly detection with 98% validated accuracy.
Data Sovereignty & Privacy
100% Localized Processing
Unlike cloud-based solutions, NEURARAD processes all patient data on-premise or within sovereign Moroccan data centers. No PII (Personally Identifiable Information) ever crosses international borders, ensuring full compliance with CNDP regulations (Law 09-08).
API Integration
Integrate NEURARAD directly into your PACS workflow using our REST API.
Submit DICOM Series for Analysis
curl -X POST https://api.neurarad.ma/v1/analysis \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: multipart/form-data" \
-F "series_id=88291-TH" \
-F "dicom_file=@./scan.dcm"
Response Object
{
"status": "success",
"analysis_id": "an_88291_xyz",
"findings": [
{
"type": "pulmonary_nodule",
"confidence": 0.98,
"location": { "x": 142, "y": 250, "z": 45 },
"dimensions": "14.2mm"
}
],
"latency_ms": 42
}