Healthcare EDI Deployment Models
Choose how you want to run edifunctions — cloud, on-prem, containerized, serverless, or embedded via .NET SDK.
Products define how we deliver — the deployment model and infrastructure for your EDI processing.
Cloud-Based API
Fully managed, pay-per-use healthcare EDI processing. Zero infrastructure management.
- Auto-scaling & high availability
- 99.9% uptime SLA
- RESTful API with webhooks
- HIPAA-compliant infrastructure
- Real-time & batch processing
- Built-in monitoring & alerts
On-Premise API
Self-hosted API server for maximum control and security. Run in your own environment.
- Full data sovereignty
- Air-gapped deployment ready
- Zero external dependencies
- Custom security policies
- Windows, Linux, macOS
- Private network connectivity
Docker Image
Containerized deployment for Kubernetes, Docker Compose, or any orchestration platform.
- Docker Hub / Private registry
- Kubernetes & Docker Compose
- Microservices architecture
- Horizontal scaling
- Message queue integration
- Health checks & readiness probes
Lambda / Serverless
Serverless EDI processing — pay only for what you use, with zero server management.
- AWS Lambda support
- Azure Functions support
- Google Cloud Functions
- Event-driven processing
- Auto-scaling to zero
- S3 / Blob trigger integration
.NET SDK / NuGet
Embed healthcare EDI processing directly in your C# / .NET application via NuGet.
- NuGet (C# / .NET / .NET Core)
- In-process EDI parsing & generation
- No network dependency
- Full HIPAA 5010 support
- Strongly-typed claim models
- Full API documentation
Hybrid Deployments
Combine deployment models for the perfect fit — cloud APIs with local processing.
- Cloud API + local database
- Local processing + cloud validation
- On-prem connector + cloud monitoring
- SDK + Cloud fallback
- Multi-region setups
- Custom architectures
Product Comparison
| Capability | Cloud API | On-Prem API | Docker | Lambda | SDK |
|---|---|---|---|---|---|
| Claims (837P/I/D) | ✓ | ✓ | ✓ | ✓ | ✓ |
| CMS-1500 / UB-04 | ✓ | ✓ | ✓ | ✓ | ✓ |
| Eligibility (270/271) | ✓ | ✓ | ✓ | ✓ | ✓ |
| Remittance (835) | ✓ | ✓ | ✓ | ✓ | ✓ |
| OCR | ✓ | ✓ | ✓ | — | — |
| Auto-Scaling | ✓ | — | ✓ | ✓ | — |
| Air-Gapped | — | ✓ | ✓ | — | ✓ |
| Zero Maintenance | ✓ | — | — | ✓ | ✓ |
| Monitoring Dashboard | ✓ | Optional | Optional | — | — |
| HIPAA Hosting | ✓ | Your infra | Your infra | Cloud | Your infra |
Built for .NET Developers
edifunctions provides a powerful .NET SDK — install via NuGet and start processing healthcare EDI in minutes.
- C# / .NET / .NET Core / ASP.NET
- NuGet package — install in seconds
- In-process EDI parsing & generation
- Full HIPAA 5010 transaction support
- Docker & Kubernetes deployments
- REST API also available
dotnet add package edifunctions
// Parse an 837P claim in C#
using edifunctions;
var parser = new EdiParser();
var claim = parser.Parse837P(ediContent);
// Access structured claim data
var patientName = claim.Patient.Name;
var totalCharge = claim.TotalCharge;