Analysts expect Airbnb, Inc. to report revenue of 5.05 B for Q3 26, against a range of 4.79 B to 5.31 B. The most recent reported quarter, Q2 26, came in at 3.61 B, a 5.4% miss against the 3.82 B consensus.
| Metric | Q3 24 | Q4 24 | Q1 25 | Q2 25 | Q3 25 | Q4 25 | Q1 26 | Q2 26 | Q3 26 | Q4 26 | Q1 27 | Q2 27 | Q3 27 | Q4 27 | Q1 28 | Q2 28 | Q3 28 | Q4 28 | Q1 29 | Q2 29 | Q3 29 | Q4 29 | Q1 30 | Q2 30 | Q3 30 | Q4 30 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Reported (Actual) | 3.73 B | 2.48 B | 2.27 B | 3.10 B | 4.09 B | 2.78 B | 2.68 B | 3.61 B | - | - | - | - | - | - | - | - | ||||||||||
| High Estimate | 4.02 B | 2.41 B | 2.35 B | 3.54 B | 4.34 B | 2.81 B | 2.72 B | 4.17 B | 5.31 B | 3.29 B | 3.47 B | 4.11 B | 5.79 B | 3.96 B | 3.73 B | 5.00 B | ||||||||||
| Low Estimate | 3.74 B | 2.12 B | 1.93 B | 2.93 B | 3.61 B | 2.45 B | 2.27 B | 3.46 B | 4.79 B | 2.83 B | 2.90 B | 3.59 B | 5.20 B | 3.34 B | 3.21 B | 4.25 B | ||||||||||
| Consensus Estimate | 3.88 B | 2.26 B | 2.14 B | 3.23 B | 3.98 B | 2.63 B | 2.49 B | 3.82 B | 5.05 B | 3.06 B | 3.19 B | 3.85 B | 5.49 B | 3.65 B | 3.47 B | 4.63 B |
Analysts expect Airbnb, Inc. to report earnings per share of 2.69 for Q3 26, against a range of 2.55 to 2.83. The most recent reported quarter, Q2 26, came in at 1.37, a 14.2% beat against the 1.20 consensus.
| Metric | Q3 24 | Q4 24 | Q1 25 | Q2 25 | Q3 25 | Q4 25 | Q1 26 | Q2 26 | Q3 26 | Q4 26 | Q1 27 | Q2 27 | Q3 27 | Q4 27 | Q1 28 | Q2 28 | Q3 28 | Q4 28 | Q1 29 | Q2 29 | Q3 29 | Q4 29 | Q1 30 | Q2 30 | Q3 30 | Q4 30 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Reported (Actual) | 2.13 | 0.73 | 0.24 | 1.03 | 2.21 | 0.56 | 0.26 | 1.37 | - | - | - | - | - | - | - | - | ||||||||||
| High Estimate | 2.38 | 0.68 | 0.26 | 0.96 | 2.28 | 0.66 | 0.34 | 1.31 | 2.83 | 0.92 | 0.48 | 1.78 | 3.07 | 1.26 | 0.77 | 2.02 | ||||||||||
| Low Estimate | 2.06 | 0.56 | 0.22 | 0.88 | 2.06 | 0.62 | 0.28 | 1.09 | 2.55 | 0.86 | 0.42 | 1.52 | 2.65 | 1.18 | 0.71 | 1.84 | ||||||||||
| Consensus Estimate | 2.22 | 0.62 | 0.24 | 0.92 | 2.17 | 0.64 | 0.31 | 1.20 | 2.69 | 0.89 | 0.45 | 1.65 | 2.86 | 1.22 | 0.74 | 1.93 |
Pull Wall Street consensus for Airbnb, Inc. (high, low and consensus estimates alongside reported actuals) into your own models and apps with the Business Quant Estimates API. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/estimates?ticker=ABNB&mode=revenue&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/estimates"
params = {"ticker": "ABNB", "mode": "revenue", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/estimates?ticker=ABNB&mode=revenue&api_key=YOUR_API_KEY");
const data = await res.json();