Shteg Engine API Reference
Technical specifications for building sovereign client integrations. Access the FHIR sync layer, trigger claims settlements, or check ledger hash chains using authenticated REST endpoints.
Technical specifications for building sovereign client integrations. Access the FHIR sync layer, trigger claims settlements, or check ledger hash chains using authenticated REST endpoints.
Submits a parsed professional healthcare claim (ANSI 837P) directly through the Shteg multi-hub router to the Stedi clearinghouse engine.
{
"providerId": "prov_9920381023",
"patientId": "pat_88203112",
"serviceCode": "99214",
"diagnosisCodes": ["H35.311", "H35.321"],
"amount": 185.00
}{
"status": "submitted",
"claimId": "clm_83901823908",
"clearinghouse": "stedi",
"hashChain": "c8942b0f498c...",
"timestamp": "2026-06-11T20:00:00Z"
}Retrieves live claim processing status and mapping logs. Syncs dynamically with primary EMR pipelines.
| Name | Type | Description |
|---|---|---|
| id | string | The unique Shteg claim identifier. |
{
"claimId": "clm_83901823908",
"status": "APPROVED",
"remittanceCode": "ERA-835-223",
"amountPaid": 175.21,
"adjudicatedAt": "2026-06-11T20:00:00Z"
}Retrieves and processes Electronic Remittance Advice (ERA 835) files from the Stedi gateway with automated split-ledger processing.
{
"remittances": [
{
"eraId": "era_99810239",
"payoutAmount": 3410.50,
"splitLedger": {
"providerShare": 3229.74,
"platformFee": 180.76
},
"processed": true
}
]
}Triggers demographic validation and a live EDI 270/271 sandbox eligibility check for UHC digital UCards during patient kiosk check-in.
{
"uCardNumber": "U981038102",
"patientName": "Sarah Jenkins",
"dob": "1984-11-20"
}{
"eligible": true,
"payer": "UNITEDHEALTHCARE",
"coPay": 25.00,
"deductibleMet": true,
"verificationToken": "ucard_tok_0928301823"
}Checks runtime operational states, monitoring probes, and rollback readiness indicators for all launch-critical P0/P1 capabilities.
{
"launchReady": true,
"capabilities": [
{
"id": "claims-submit",
"criticality": "P0",
"status": "implemented",
"liveCheck": "PASSED"
},
{
"id": "edge-fhir-ingest",
"criticality": "P1",
"status": "implemented",
"liveCheck": "PASSED"
}
],
"dependencies": {
"stediClearinghouse": "CONNECTED",
"realtimePayments": "CONNECTED"
}
}