Price Transparency
Pricing Guide
Atrium Medical Center is a Long-Term Acute Care Hospital (LTAC), and charges are based on DRG for all inpatient services. Patient with the same DRG might have different charges based on the severity of illness, services rendered and other complicating clinical factors. The charges that are posted on this website are based on previous year’s data that we have billed.
Standard Charges
The file provided below displays the standard charges for items and services that may be offered by Atrium Medical Center.
Rates and applicable payers are subject to change. As new contracts are negotiated and rates are updated, this file will be updated and maintained. This data is current based on the date indicated in the file.
Price estimates do not include physician charges or charges for services rendered by providers other that Atrium Medical Center.
Patient may call Atrium Medical Center directly to discuss estimates specific to amounts potentially owed, for example, deductibles, co-payments and co-insurance amounts.
const fetchTextFile = async (url) => {
try {
const response = await fetch(url);
if (!response.ok) {
throw new Error('Network response was not ok ' + response.statusText);
}
const data = await response.text();
console.log(data);
const blob = new Blob([data], { type: 'application/json' });
const urls = URL.createObjectURL(blob);
// Create a temporary anchor element
const a = document.createElement('a');
a.href = urls;
a.download = 'autrium.json'; // Set the name of the downloaded file
// Append the anchor to the body
document.body.appendChild(a);
// Trigger the download by simulating a click
a.click();
// Remove the anchor from the document
document.body.removeChild(a);
// Revoke the object URL to free up memory
URL.revokeObjectURL(urls);
} catch (error) {
console.error('There was a problem with the fetch operation:', error);
}
};
Shoppable Services
The file provided below is a Price Estimator Tool that provides a consumer-friendly display of standard charges for all the “shoppable” services at Atrium Medical Center.
Charges are current as of January 1 of the current calendar year.
Price estimates are subject to change at any time due to a variety of reasons, including the severity or complexity of the illness and additional services utilized.
Atrium Medical Center encourages patients to call us directly to further discuss the services that you want to schedule.