Introduction & Quickstart
Welcome to the MediBridgeX developer documentation. MediBridgeX is an enterprise-grade healthcare interoperability platform designed to securely connect fragmented systems using FHIR, HL7 v2, and modern REST APIs.
Why MediBridgeX?
Building healthcare integrations from scratch requires navigating complex protocols (like MLLP), legacy data formats (HL7 v2), and strict compliance requirements (HIPAA, SOC2). MediBridgeX abstracts this complexity behind a secure, highly scalable, developer-friendly API layer.
- Bi-directional FHIR & HL7 routing engine
- Built-in enterprise security and audit logging
- Multi-tenant organization & project isolation
- Real-time webhook events and transformations
3-Step Quickstart
Get your API Keys
Every request to MediBridgeX must be authenticated. Log into the Enterprise Portal and navigate to your Project settings to generate an API key.
mbx_live_a1b2c3d4e5f6g7h8i9j0
Authenticate your Request
Use your API key in the Authorization header as a Bearer token. Let's test your connection by fetching your current organization profile.
https://api.medibridgex.com/v1/organizations/me \
-H "Authorization: Bearer mbx_live_a1b2..."
Send your first FHIR Resource
Now that you're authenticated, you can interact with the FHIR Gateway. Let's create a standard FHIR Patient resource.
https://api.medibridgex.com/v1/fhir/Patient \
-H "Authorization: Bearer mbx_live_a1b2..." \
-H "Content-Type: application/json" \
-d '{"resourceType": "Patient", "active": true, "name": [{"family": "Smith", "given": ["John"]}]}'