American Standard Heating & Air Conditioning
American Standard's own published HVAC cost guide — national-average installed-cost ranges by system type and tier, straight off the manufacturer's site.
American Standard's own published HVAC cost guide — national-average installed-cost ranges by system type and tier, straight off the manufacturer's site. No brand computes a bound, per-home price online (measured across six national brands); this is the closest real thing any of them publishes.
Domain: americanstandardair.com
Also known as: American Standard, American Standard Air, American Standard HVAC
Prefer the capability
bowmark.hvac covers this provider and routes around it when it is having a bad day. Reach for this page when you need americanstandardair.com specifically.
Call it directly
bowmark.providers.americanstandard.getSystemCostEstimate(systemType: string): Promise<AmericanStandardSystemCostEstimate>Functions
| Function | What it does |
|---|---|
getSystemCostEstimate | Reads American Standard's own published cost guide for one system type ("Air Conditioners", "80% Furnaces", "90% Furnaces", "Heat Pumps", "Low-Profile Heat Pumps", "Cold-Climate Heat Pumps"… |
Types
type AmericanStandardTierName = "Platinum" | "Gold" | "Silver";
interface AmericanStandardCostRange {
low: number;
high: number;
currency: "USD";
}
interface AmericanStandardTierCost {
tier: AmericanStandardTierName;
model: string | null;
estimatedInstalledCost: AmericanStandardCostRange;
}
interface AmericanStandardSystemCostEstimate {
systemType: string;
tiers: AmericanStandardTierCost[];
disclaimer: string;
sourceUrl: string;
}Examples
const estimate = await bowmark.providers.americanstandard.getSystemCostEstimate("Heat Pumps");
// estimate.tiers -> [{ tier: "Platinum", model: "AccuComfort™ Variable Speed Platinum 20 Heat Pump", estimatedInstalledCost: { low: 13504, high: 16777, currency: "USD" } }, …]Related
hvac | HVAC system cost estimate — the capability this provider backs. |