Developer Platform

FHIR R4 API

Integrate with InclusiCare's care data using industry-standard FHIR R4 resources. OAuth 2.0 with SMART on FHIR scopes.

Quick start

# Check the CapabilityStatement (no auth required)

curl -X GET https://api.inclusigear.com/fhir/r4/metadata \
  -H "Accept: application/fhir+json"

# SMART on FHIR discovery

curl -X GET https://api.inclusigear.com/.well-known/smart-configuration

# Read a Patient resource (requires auth)

curl -X GET https://api.inclusigear.com/fhir/r4/Patient/{id} \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/fhir+json"

Supported resources

InclusiCare maps internal care data to standard FHIR R4 resources with bidirectional transformation.

FHIR Resource InclusiCare Data Read Write Search
Patient Child Profile
Observation Monitoring Event
Procedure Intervention Record
DocumentReference Care Note
Appointment Schedule Item

Authentication

The API uses OAuth 2.0 with SMART on FHIR scopes. Discovery endpoints are public; all data endpoints require Bearer token authorization.

Read scopes

  • patient/Patient.read
  • patient/Observation.read
  • patient/Procedure.read
  • patient/DocumentReference.read
  • patient/Appointment.read

Write scopes

  • patient/Patient.write
  • patient/Observation.write
  • patient/Procedure.write

Epic EHR integration

InclusiCare supports bidirectional data flow with Epic electronic health records through the standard OAuth callback flow. Clinicians can access family-collected care data directly within their EHR workflow, bridging the gap between home and clinical settings.

Contact us for integration details

Full API documentation

Complete field mappings, code samples, and integration guides are available in our developer docs.

docs.inclusigear.com — coming soon