ExplanationOfBenefit
Overview
The ExplanationOfBenefit resource provides information about the adjudication of healthcare claims. This includes details about what was covered, what was paid, and any patient responsibility for healthcare services.
Resource Schema
Key fields in the ExplanationOfBenefit resource:
{
"resourceType": "ExplanationOfBenefit",
"id": "example-eob-123",
"status": "active",
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/claim-type",
"code": "professional"
}
]
},
"use": "claim",
"patient": {
"reference": "Patient/123456"
},
"created": "2023-07-15",
"insurer": {
"reference": "Organization/insurance-789"
},
"provider": {
"reference": "Organization/provider-456"
},
"outcome": "complete",
"insurance": [
{
"focal": true,
"coverage": {
"reference": "Coverage/coverage-321"
}
}
]
}
Operations
The ExplanationOfBenefit resource supports Read and Search operations. Support varies by CareRecord solution.
| CareRecord / Solution | Read | Search |
|---|---|---|
| GEHRIMED | ✅ | ✅ |
| myAvatar | ✅ | ✅ |
| myEvolv | ✅ | ✅ |
| myUnity | ✅ | ✅ |
| TheraOffice | ✅ | ✅ |
Read
HTTP Method: GET
URL: /ExplanationOfBenefit/{id}
- Production
- Preview
curl -X GET https://fhir.netsmartcloud.com/uscore/v1/ExplanationOfBenefit/123456 \
-H "Authorization: Bearer {token}" \
-H "Accept: application/fhir+json"
curl -X GET https://fhirtest.netsmartcloud.com/uscore/v1/ExplanationOfBenefit/123456 \
-H "Authorization: Bearer {token}" \
-H "Accept: application/fhir+json"
Search
HTTP Method: GET or POST
URL: /ExplanationOfBenefit or /ExplanationOfBenefit/_search
- Production
- Preview
Search by Patient
curl -X POST https://fhir.netsmartcloud.com/uscore/v1/ExplanationOfBenefit/_search \
-H "Authorization: Bearer {token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "patient=Patient/123"
Search by Patient
curl -X POST https://fhirtest.netsmartcloud.com/uscore/v1/ExplanationOfBenefit/_search \
-H "Authorization: Bearer {token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "patient=Patient/123"
Integration Patterns
Common Workflows
- Claims Review - Review processed insurance claims
- Benefits Analysis - Understand coverage and patient responsibility
- Financial Planning - Support patient financial counseling
Relationships to Other Resources
- Patient - Beneficiary of the claim
- Coverage - Insurance coverage used for the claim
- Organization - Insurance companies and healthcare providers
Error Handling
For common errors and troubleshooting guidance, see Common Errors.