RESTful API for medical diagnosis assistance and clinical documentation. Get AI-powered differential diagnoses and extract structured medical data from doctor–patient conversations.
API Endpoints: /api/v1/diagnosis, /api/v1/medical-conversation, /api/v1/drugs
Authentication: Bearer token required (API key from Developers Portal)
Documentation: View Full Documentation →
curl -X POST http://localhost:3002/api/v1/diagnosis \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"symptoms": ["fever", "cough"],
"patientAge": 35,
"patientSex": "male"
}'curl -X POST http://localhost:3002/api/v1/medical-conversation \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"conversation": "Doctor: What brings you in? Patient: Fever and cough for 3 days. Doctor: Any medications? Patient: Lisinopril for blood pressure."}'curl -X GET "http://localhost:3002/api/v1/drugs?q=acetaminophen&limit=10" \ -H "Authorization: Bearer YOUR_API_KEY"