[Velocity BPA Licensing Notice]
This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).
Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.
For licensing information, visit https://velobpa.com/licensing or contact licensing@velobpa.com.
n8n community node for Stedi® healthcare clearinghouse integration
Automate the entire healthcare claims lifecycle including claim submission, eligibility verification, status checking, payment reconciliation, and attachment management.
- Overview
- Features
- Installation
- Configuration
- Resources & Operations
- Usage Examples
- Testing
- Troubleshooting
- License
- Support
This n8n community node integrates with Stedi, the API-first healthcare clearinghouse. It enables healthcare organizations to automate:
- Professional Claims (837P) - CMS-1500 equivalent
- Institutional Claims (837I) - UB-04 equivalent
- Dental Claims (837D) - ADA dental claims
- Eligibility Verification (270/271) - Real-time benefits check
- Claim Status (276/277) - Track claim progress
- Remittance Advice (835 ERA) - Payment reconciliation
- Claim Acknowledgments (277CA) - Payer responses
- Attachments (275) - Supporting documentation
- ✅ Complete Healthcare EDI Support - All major X12 transaction types
- ✅ Real-time Operations - Eligibility, claim status, and submissions
- ✅ Webhook Triggers - Listen for incoming transactions
- ✅ Pagination Handling - Automatic pagination for large result sets
- ✅ Error Handling - Detailed error messages from Stedi API
- ✅ Test/Production Environments - Easy environment switching
- ✅ TypeScript - Full type safety and IntelliSense support
- n8n version >= 0.200.0
- Node.js >= 18.0.0
- Stedi account with API key
# In your n8n installation directory
npm install n8n-nodes-stedi# Clone the repository
git clone https://github.com/Velocity-BPA/n8n-nodes-stedi.git
cd n8n-nodes-stedi
# Install dependencies
npm install
# Build the project
npm run build
# Link to your n8n installation
npm link
# In your n8n directory
cd /path/to/n8n
npm link n8n-nodes-stediAdd to your n8n Docker Compose or Dockerfile:
# In your custom n8n Dockerfile
FROM n8nio/n8n:latest
RUN npm install -g n8n-nodes-stedi- Download the latest release ZIP from GitHub
- Extract to your n8n custom nodes directory
- Restart n8n
- Log in to Stedi Dashboard
- Navigate to Settings → API Keys
- Create a new API key
- Copy the key (it won't be shown again)
- In n8n, go to Credentials → Add Credential
- Search for Stedi API
- Enter your API key
- Select environment: Test or Production
- Click Save
- Test Environment: Use for development. Stedi provides test payer IDs that return mock responses.
- Production Environment: Live healthcare transactions. Ensure HIPAA compliance.
Submit CMS-1500 equivalent claims for physician and outpatient services.
| Operation | Description |
|---|---|
| Submit | Submit a new professional claim |
| Get PDF | Retrieve CMS-1500 PDF for a submitted claim |
Submit UB-04 equivalent claims for hospitals and facilities.
| Operation | Description |
|---|---|
| Submit | Submit institutional claim (JSON payload) |
Submit dental claims with ADA procedure codes.
| Operation | Description |
|---|---|
| Submit | Submit dental claim (JSON payload) |
Real-time patient eligibility and benefits verification.
| Operation | Description |
|---|---|
| Check | Verify patient coverage and benefits |
Check the status of submitted claims.
| Operation | Description |
|---|---|
| Check | Query real-time claim status |
Retrieve Electronic Remittance Advice for payment reconciliation.
| Operation | Description |
|---|---|
| Get Report | Get specific ERA report |
| List | List all available ERAs |
Retrieve payer acknowledgments for submitted claims.
| Operation | Description |
|---|---|
| Get Report | Get acknowledgment report |
Manage transaction history across all types.
| Operation | Description |
|---|---|
| Get | Get transaction by ID |
| Get Input | Get original request payload |
| Get Output | Get response payload |
| List | List all transactions |
| Poll | Poll for new transactions |
Submit supporting documentation for claims.
| Operation | Description |
|---|---|
| Create | Create attachment submission |
| Upload File | Upload attachment file |
1. Add "Stedi" node
2. Select Resource: "Eligibility (270/271)"
3. Select Operation: "Check"
4. Configure:
- Trading Partner Service ID: Your payer ID (e.g., "BCBSFL")
- Provider NPI: Your 10-digit NPI
- Subscriber Member ID: Patient's member ID
- Service Type Codes: ["30"] for general coverage
5. Execute
1. Add "Stedi" node
2. Select Resource: "Professional Claim (837P)"
3. Select Operation: "Submit"
4. Fill in required fields:
- Control Number: Unique claim ID
- Trading Partner Service ID: Payer ID
- Submitter info
- Subscriber (patient) info
- Billing provider info
- Diagnosis codes (ICD-10)
- Service lines (CPT codes)
5. Execute
Schedule Trigger (Daily 6am)
↓
Stedi: List Remittance (835)
↓
Loop: Process each ERA
↓
Match to original claims
↓
Update accounting system
↓
Send notification
Webhook Trigger (Appointment Created)
↓
Stedi: Check Eligibility
↓
IF eligible → Store benefits
↓
IF not eligible → Alert front desk
npm testnpm run test:coverageSet your Stedi test API key:
export STEDI_TEST_API_KEY="your-test-api-key"
npm testUse Stedi's documented test payer IDs for sandbox testing. Check Stedi Payer Network for available test payers.
- Verify your API key in Stedi dashboard
- Ensure no extra spaces in the key
- Check environment matches (test vs production)
- Search Stedi Payer Network for valid IDs
- Different payers may use different service IDs
- Some payers require enrollment before submission
- NPI must be exactly 10 digits
- Use NPPES NPI Registry to verify
- ICD-10 codes should not include periods
- Example: Use "J069" not "J06.9"
- Use YYYY-MM-DD format in UI fields
- API converts to YYYYMMDD automatically
Enable n8n debug logs:
export N8N_LOG_LEVEL=debug
n8n startThis n8n community node is licensed under the Business Source License 1.1 (BSL 1.1).
Permitted for personal, educational, research, and internal business use.
Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license from Velocity BPA.
For licensing inquiries: licensing@velobpa.com
See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for full details.
- Stedi® is a registered trademark of Stedi, Inc. This node is not affiliated with or endorsed by Stedi.
- n8n is a registered trademark of n8n GmbH.
- GitHub Issues: Report bugs or request features
- Email: licensing@velobpa.com
- Website: https://velobpa.com
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
Velocity BPA, LLC
Website: https://velobpa.com
GitHub: https://github.com/Velocity-BPA
Email: licensing@velobpa.com
Built with ❤️ for the healthcare automation community