Host Hotels & Resorts reported a gross margin of 78.83% and a net margin of -5.77% for the quarter ended Sep 2010. These financial ratios cover 7 quarters of results from Mar 2009 through Sep 2010, standardized by Business Quant from the company’s SEC filings.
| Ratios | Mar2009 | Jun2009 | Sep2009 | Dec2009 | Mar2010 | Jun2010 | Sep2010 |
|---|---|---|---|---|---|---|---|
| Profitability | |||||||
| Gross Margin | 77.43% | 78.31% | 77.52% | 76.64% | 77.28% | 78.37% | 78.83% |
| EBT Margin | -7.87% | -0.10% | -10.19% | -9.40% | -12.64% | 2.33% | -6.56% |
| EBIT Margin | 2.31% | 9.90% | -0.89% | -1.34% | -0.24% | 9.87% | 2.29% |
| EBITDA Margin | 2.31% | 9.90% | -0.89% | -1.34% | -0.24% | 9.87% | 2.29% |
| Operating Margin | 2.31% | 9.90% | -0.89% | -1.34% | -0.24% | 9.87% | 2.29% |
| Net Margin | -7.06% | -6.66% | -6.31% | -5.45% | -10.45% | 1.17% | -5.77% |
| FCF Margin | 8.22% | 8.85% | 10.19% | 9.85% | 2.67% | 11.67% | 7.65% |
| Leverage & Solvency | |||||||
| Interest Coverage RatioInterest Cover | 0.23 | 1.27 | -0.08 | -0.16 | -0.02 | 1.34 | 0.26 |
| Times Interest Earned | 0.23 | 1.27 | -0.08 | -0.16 | -0.02 | 1.34 | 0.26 |
| Dividends & Payouts | |||||||
| Dividend Coverage RatioDiv. Cover | -2.26 | 70.00 | -4.56 | -86.00 | 2.17 | -8.29 | |
| FCF Payout RatioFCF Cover | 0.38 | -0.01 | 0.12 | 0.05 | 0.05 | 0.09 | |
| Dividend YieldDiv. Yield | -0.02% | 0.21% | 0.01% | 0.06% | 0.07% | ||
| Payout Ratio | -0.44 | 0.01 | -0.22 | -0.01 | 0.46 | -0.12 | |
| Valuation | |||||||
| Price to EarningsP/E | -64.78 | -111.94 | -103.32 | -110.76 | 778.48 | -161.72 | |
| Price to SalesP/S | 4.31 | 7.07 | 5.63 | 11.57 | 9.08 | 9.32 | |
| Enterprise Value | 4.53B | 6.38B | 7.54B | 9.53B | 10.12B | 9.38B | |
| EV to EBIT | 43.60 | -797.61 | -419.02 | -0.00B | 92.00 | 407.83 | |
| EV to EBITDA | 43.60 | -797.61 | -419.02 | -0.00B | 92.00 | 407.83 | |
| Market Capitalization | 4.53B | 6.38B | 7.54B | 9.53B | 10.12B | 9.38B | |
| Price to FCFP/FCF | 48.76 | 69.36 | 57.14 | 432.96 | 77.85 | 121.82 | |
| EV to FCF | 48.76 | 69.36 | 57.14 | 432.96 | 77.85 | 121.82 | |
| EV to CFO | 33.59 | 55.49 | 41.44 | 194.39 | 59.53 | 86.06 | |
| Return Ratios | |||||||
| Return on Sales [ROS]ROS | 2.31% | 9.90% | -0.89% | -1.34% | -0.24% | 9.87% | 2.29% |
Pull Host Hotels & Resorts's standardized financial statements into your own models, spreadsheets and apps with the Business Quant Financial Statements API. The request below follows the statement, frequency and period selected above. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/statements?ticker=HST&statement=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "HST", "statement": "Ratios", "frequency": "Quarter", "period": "all", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/statements?ticker=HST&statement=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();