Getting Started

  • Introduction
  • Concepts & Glossary
  • Quickstart
  • Authentication

API Reference

  • Endpoints
  • Error Handling
  • Versioning

Guides

  • Code Examples
  • FHIR R4 Integration
  • Integration Patterns
  • Going to Production

Medical Content

  • Knowledge Base

Tools

  • Interactive Sandbox
  • API Status

Resources

  • FAQ
  • Changelog
  • Support
Developers

Loading documentation…

Concepts & Glossary
PearMedica Logo

The clinical intelligence layer built for African healthcare. Empowering providers with AI-driven triage and decision support.

Product

  • Symptom Assessment
  • Triage Engine
  • Decision Support
  • Pricing

Developers

  • Documentation
  • API Reference
  • Quickstart Guide
  • Code Examples

Company

  • About Us
  • Contact
  • Blog
  • Careers

Legal

  • Privacy Policy
  • Terms of Service
  • Security & Compliance
  • NDPA Compliance
NDPA 2023
AES-256 Encryption
Audit Logging

© 2026 PearMedica. All rights reserved.

Status
Developer Portal

Build with PearMedica

Everything you need to integrate clinical intelligence into your application. API documentation, code examples, and an interactive sandbox.

Get StartedAPI Reference

Documentation

Quickstart

Integrate in under 5 minutes with JavaScript, Python, or cURL.

API Reference

Complete documentation for all 14 public endpoints.

Code Examples

Copy-paste examples for assessment, parsing, and conversational flow.

Interactive Sandbox

Test API calls live in your browser with pre-filled requests.

Powered by PearMDx AI

PearMDx is the clinical decision support engine behind every PearMedica API call. It delivers accurate, Africa-tuned assessments in under 3 seconds — with multiple independent safety layers ensuring clinical reliability.

Emergency Detection

Life-threatening symptom combinations are flagged in under 100ms — before the full assessment completes. Designed for zero false negatives.

African Disease Intelligence

Assessments are grounded in curated medical knowledge covering 200+ conditions prevalent across Africa — not generic Western training data.

Multi-Layer Validation

Every AI output passes through multiple independent safety checks before reaching your application. No single point of failure.

Smart Triage

4-level urgency scoring (emergency → self-care) with nearest facility recommendations based on patient location.

Graceful Degradation

If the AI engine is temporarily unavailable, PearMDx serves safe rule-based responses — your application never crashes.

PearMDx Chatbot

Built-in AI clinical assistant available to staff via PearCare. Answers questions about patients, assessments, and clinical protocols using real facility data.

Integration in 3 Lines

javascript
// Assess patient symptoms with one API call
const response = await fetch('https://api.pearmedica.com/v1/assess', {
method: 'POST',
headers: {
'Authorization': 'Bearer sk_live_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
patient: { age: 28, sex: 'female', location: 'lagos_nigeria' },
evidence: [
{ id: 's_fever', choice_id: 'present', duration_days: 3 },
{ id: 's_headache', choice_id: 'present', severity: 'severe' },
],
}),
});
const { conditions, triage, next_question } = await response.json();
// → conditions: [{ name: "Malaria", probability: "high", ... }]
// → triage: { level: "urgent", recommended_action: "..." }