Analysts expect Shopify Inc. to report revenue of 3.61 B for Q3 26, against a range of 3.26 B to 3.96 B. The most recent reported quarter, Q2 26, came in at 3.54 B, a 0.2% miss against the 3.55 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.23 B | 2.80 B | 2.28 B | 2.71 B | 2.88 B | 3.64 B | 3.10 B | 3.54 B | - | - | - | - | - | - | - | - | ||||||||||
| High Estimate | 2.31 B | 2.72 B | 2.49 B | 2.82 B | 2.98 B | 4.06 B | 3.11 B | 3.77 B | 3.96 B | 5.34 B | 4.54 B | 4.82 B | 4.81 B | 6.99 B | 5.38 B | 6.26 B | ||||||||||
| Low Estimate | 1.89 B | 2.41 B | 2.22 B | 2.45 B | 2.70 B | 3.51 B | 2.61 B | 3.32 B | 3.26 B | 4.47 B | 3.85 B | 4.49 B | 4.41 B | 5.82 B | 4.98 B | 5.48 B | ||||||||||
| Consensus Estimate | 2.10 B | 2.57 B | 2.36 B | 2.63 B | 2.84 B | 3.79 B | 2.86 B | 3.55 B | 3.61 B | 4.91 B | 4.20 B | 4.66 B | 4.61 B | 6.41 B | 5.18 B | 5.87 B |
Analysts expect Shopify Inc. to report earnings per share of 0.47 for Q3 26, against a range of 0.45 to 0.49. The most recent reported quarter, Q2 26, came in at 0.41, a 4.7% miss against the 0.43 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) | 0.37 | 0.42 | 0.25 | 0.36 | 0.34 | 0.48 | 0.36 | 0.41 | - | - | - | - | - | - | - | - | ||||||||||
| High Estimate | 0.28 | 0.49 | 0.26 | 0.33 | 0.34 | 0.52 | 0.38 | 0.46 | 0.49 | 0.65 | 0.45 | 0.61 | 0.58 | 0.93 | 0.71 | 0.79 | ||||||||||
| Low Estimate | 0.24 | 0.43 | 0.22 | 0.27 | 0.32 | 0.44 | 0.32 | 0.40 | 0.45 | 0.59 | 0.39 | 0.51 | 0.52 | 0.77 | 0.59 | 0.73 | ||||||||||
| Consensus Estimate | 0.26 | 0.46 | 0.24 | 0.30 | 0.33 | 0.48 | 0.35 | 0.43 | 0.47 | 0.62 | 0.42 | 0.56 | 0.55 | 0.85 | 0.65 | 0.76 |
Pull Wall Street consensus for Shopify 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=SHOP&mode=revenue&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/estimates"
params = {"ticker": "SHOP", "mode": "revenue", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/estimates?ticker=SHOP&mode=revenue&api_key=YOUR_API_KEY");
const data = await res.json();