curl --request GET \
--url https://api.example.com/v1/claims/{id} \
--header 'Authorization: Bearer <token>' \
--header 'X-Organization-Id: <x-organization-id>'{
"code": "success",
"data": {
"id": "clm_01J5K8N2XRQV3M7YGWT4HB6E9C",
"claimAmount": "450.00",
"balance": "120.00",
"claimStatus": "accepted",
"submittedDate": "2025-01-16",
"claimCreatedDate": "2025-01-15",
"billId": "bill_01J5K8N2XRQV3M7YGWT4HB6E9C",
"dateOfService": "2025-01-15",
"billHumanId": "BILL-78432",
"patientId": "pat_01J5K8N2XRQV3M7YGWT4HB6E9C",
"patientFirstName": "Sarah",
"patientLastName": "Johnson",
"patientDob": "1985-03-15",
"primaryProviderName": "Dr. James Wilson",
"billUnderName": "Dr. James Wilson",
"facilityId": "fac_01J5K8N2XRQV3M7YGWT4HB6E9C",
"facilityName": "West LA Dermatology",
"specialty": "Dermatology",
"primaryInsurance": "Blue Cross Blue Shield",
"secondaryInsurance": null,
"createdAt": "2025-01-15T09:30:00.000Z",
"updatedAt": "2025-01-20T14:22:00.000Z",
"primaryProviderId": "prov_01J5K8N2XRQV3M7YGWT4HB6E9C",
"billUnderId": "prov_01J5K8N2XRQV3M7YGWT4HB6E9C",
"cliaNumber": "05D2081496",
"insurance": [
{
"payerName": "Blue Cross Blue Shield",
"planName": "PPO Gold",
"policyType": "PPO",
"isPrimary": true,
"memberId": "XYZ123456789",
"groupNumber": "GRP-98765",
"policyNumber": "POL-2025-001234",
"subscriberName": "Sarah Johnson",
"copayAmount": "30.00",
"deductibleRemaining": "1500.00"
}
]
}
}Returns a single claim with full detail including insurance info. Requires read:claims scope.
curl --request GET \
--url https://api.example.com/v1/claims/{id} \
--header 'Authorization: Bearer <token>' \
--header 'X-Organization-Id: <x-organization-id>'{
"code": "success",
"data": {
"id": "clm_01J5K8N2XRQV3M7YGWT4HB6E9C",
"claimAmount": "450.00",
"balance": "120.00",
"claimStatus": "accepted",
"submittedDate": "2025-01-16",
"claimCreatedDate": "2025-01-15",
"billId": "bill_01J5K8N2XRQV3M7YGWT4HB6E9C",
"dateOfService": "2025-01-15",
"billHumanId": "BILL-78432",
"patientId": "pat_01J5K8N2XRQV3M7YGWT4HB6E9C",
"patientFirstName": "Sarah",
"patientLastName": "Johnson",
"patientDob": "1985-03-15",
"primaryProviderName": "Dr. James Wilson",
"billUnderName": "Dr. James Wilson",
"facilityId": "fac_01J5K8N2XRQV3M7YGWT4HB6E9C",
"facilityName": "West LA Dermatology",
"specialty": "Dermatology",
"primaryInsurance": "Blue Cross Blue Shield",
"secondaryInsurance": null,
"createdAt": "2025-01-15T09:30:00.000Z",
"updatedAt": "2025-01-20T14:22:00.000Z",
"primaryProviderId": "prov_01J5K8N2XRQV3M7YGWT4HB6E9C",
"billUnderId": "prov_01J5K8N2XRQV3M7YGWT4HB6E9C",
"cliaNumber": "05D2081496",
"insurance": [
{
"payerName": "Blue Cross Blue Shield",
"planName": "PPO Gold",
"policyType": "PPO",
"isPrimary": true,
"memberId": "XYZ123456789",
"groupNumber": "GRP-98765",
"policyNumber": "POL-2025-001234",
"subscriberName": "Sarah Johnson",
"copayAmount": "30.00",
"deductibleRemaining": "1500.00"
}
]
}
}