Skip to main content
Build powerful healthcare integrations with Max AI. Access patient records, appointments, billing, claims, inventory, and more through a simple REST API. Max AI has live connections with many ERPs, giving you a unified interface to access clinics’s underlying data without the hassle of maintaining non homogeneous EHR interfaces. The Max AI API lets marketplace apps connect to clinic data securely, with granular permission scopes and a consistent JSON response format.

Base URL

All API requests use the following base URL:
https://api.maxcare.ai/v1

Quick Example

curl -X GET "https://api.maxcare.ai/v1/patients" \
  -H "Authorization: Bearer max_prd_ak_SBA...01S" \
  -H "X-Organization-Id: org_abc123"
{
  "code": "success",
  "data": {
    "patients": [
      {
        "id": "pat_01J5K8N2XRQV3M7YGWT4HB6E9C",
        "mrn": "MRN-10042",
        "firstName": "Sarah",
        "lastName": "Johnson",
        "dateOfBirth": "1985-03-15",
        "email": "sarah.johnson@email.com",
        "phone": "(555) 123-4567",
        "createdAt": "2024-08-15T09:30:00.000Z",
        "updatedAt": "2025-01-20T14:22:00.000Z"
      }
    ],
    "pagination": {
      "page": 1,
      "pageSize": 50,
      "totalCount": 1,
      "totalPages": 1
    }
  }
}