Analysts expect Ebay Inc to report revenue of 2.93 B for Q3 26, against a range of 2.81 B to 3.05 B. The most recent reported quarter, Q2 26, came in at 3.13 B, a 1.1% beat against the 3.10 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) | 2.58 B | 2.58 B | 2.58 B | 2.73 B | 2.82 B | 2.96 B | 3.09 B | 3.13 B | - | - | - | - | - | - | - | - | ||||||||||
| High Estimate | 2.61 B | 2.64 B | 2.49 B | 2.97 B | 2.80 B | 2.90 B | 3.33 B | 3.26 B | 3.05 B | 3.31 B | 3.38 B | 3.65 B | 3.35 B | 3.50 B | 3.54 B | 3.50 B | ||||||||||
| Low Estimate | 2.15 B | 2.17 B | 2.26 B | 2.58 B | 2.40 B | 2.47 B | 2.93 B | 2.93 B | 2.81 B | 2.71 B | 3.02 B | 3.37 B | 2.96 B | 3.28 B | 3.20 B | 3.14 B | ||||||||||
| Consensus Estimate | 2.38 B | 2.41 B | 2.37 B | 2.77 B | 2.60 B | 2.69 B | 3.13 B | 3.10 B | 2.93 B | 3.01 B | 3.20 B | 3.51 B | 3.15 B | 3.39 B | 3.37 B | 3.32 B |
Analysts expect Ebay Inc to report earnings per share of 1.49 for Q3 26, against a range of 1.41 to 1.57. The most recent reported quarter, Q2 26, came in at 1.60, a 13.5% beat against the 1.41 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) | 1.19 | 1.25 | 1.38 | 1.37 | 1.36 | 1.41 | 1.66 | 1.60 | - | - | - | - | - | - | - | - | ||||||||||
| High Estimate | 1.32 | 1.30 | 1.35 | 1.33 | 1.33 | 1.39 | 1.72 | 1.54 | 1.57 | 1.68 | 1.67 | 1.76 | 1.63 | 1.80 | 1.91 | 2.09 | ||||||||||
| Low Estimate | 1.14 | 1.16 | 1.15 | 1.15 | 1.15 | 1.21 | 1.52 | 1.28 | 1.41 | 1.46 | 1.51 | 1.50 | 1.43 | 1.52 | 1.69 | 1.73 | ||||||||||
| Consensus Estimate | 1.23 | 1.23 | 1.25 | 1.24 | 1.24 | 1.30 | 1.62 | 1.41 | 1.49 | 1.57 | 1.59 | 1.63 | 1.53 | 1.66 | 1.80 | 1.91 |
Pull Wall Street consensus for Ebay 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=EBAY&mode=revenue&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/estimates"
params = {"ticker": "EBAY", "mode": "revenue", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/estimates?ticker=EBAY&mode=revenue&api_key=YOUR_API_KEY");
const data = await res.json();