Know what Europe is buying
Granular visibility into consumer spending across Europe's biggest brands. Anonymized transaction data showing exactly where money is flowing, merchant by merchant.
- Transaction History
- 0+ Years
- Public Companies
- 0+
- European Markets
- 0 Countries
Alternative Data
Spending insights, built for developers
Access aggregated consumer spending data from Fable Data's European transaction panel. Normalize by panelist count for accurate trend analysis, filter by country, channel, and consumer type, and track week-over-week momentum across any merchant.
- ✓Daily transaction aggregates (released after 30-day embargo)
- ✓Spend normalized by 28-day rolling panelist count
- ✓Filter by online, offline, or buy now pay later channels
- ✓Cross-border analysis across UK, DE, FR, ES, IT, AT
# Merchant Aggregates
import requests
API_KEY = "YOUR_API_KEY"
URL = "https://api.massive.com/consumer-spending/eu/v1/merchant-aggregates"
PARAMS = {
"name": "nike",
"transaction_date.gte": "2024-01-01",
"limit": 100,
"apiKey": API_KEY
}
response = requests.get(URL, params=PARAMS)
if response.status_code == 200:
data = response.json()
for record in data["results"]:
spend_per_panelist = record["total_spend"] / record["twenty_eight_day_rolling_category_accounts"]
print(f"{record['transaction_date']}: €{spend_per_panelist:.2f}/panelist")
else:
print(f"Request failed with status {response.status_code}")Competitive intelligence
Track relative performance
Nike vs Adidas— Who's winning?
Seasonal patterns
Discover spending seasonality
Airbnb Spending Seasonality
| Year | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2016 | +0.21 | -0.06 | +0.02 | +0.09 | -0.04 | -0.04 | +0.04 | -0.10 | -0.16 | -0.09 | -0.13 | -0.23 |
| 2017 | -0.08 | +0.00 | -0.03 | -0.04 | -0.01 | -0.06 | -0.01 | -0.17 | -0.21 | -0.17 | -0.17 | -0.23 |
| 2018 | -0.04 | -0.01 | -0.03 | +0.01 | -0.02 | -0.00 | +0.08 | -0.08 | -0.17 | -0.12 | -0.16 | -0.11 |
| 2019 | +0.06 | -0.02 | -0.03 | -0.01 | -0.00 | +0.04 | +0.16 | -0.07 | -0.17 | -0.12 | -0.16 | -0.13 |
| 2020 | +0.03 | +0.01 | -0.29 | -0.11 | +0.30 | +0.56 | +0.42 | -0.02 | -0.20 | -0.22 | -0.27 | -0.09 |
| 2021 | -0.05 | +0.17 | +0.22 | +0.40 | +0.65 | +0.37 | +0.36 | +0.06 | -0.10 | -0.06 | -0.12 | -0.07 |
| 2022 | +0.07 | +0.15 | +0.12 | +0.14 | +0.16 | +0.14 | +0.38 | +0.09 | -0.07 | -0.03 | -0.07 | -0.06 |
| 2023 | +0.12 | +0.14 | +0.16 | +0.12 | +0.14 | +0.15 | +0.31 | +0.09 | -0.08 | -0.05 | -0.10 | -0.04 |
| 2024 | +0.07 | +0.07 | +0.06 | +0.06 | -0.01 | +0.02 | +0.18 | -0.04 | -0.16 | -0.13 | -0.16 | -0.15 |
| 2025 | -0.03 | +0.01 | -0.02 | +0.00 | -0.04 | -0.02 | +0.12 | -0.07 | -0.17 | -0.16 | -0.14 | -0.18 |
| 2026 | -0.11 | -0.11 | -0.13 |
Peak Month
Jul
+0.21 vs avg
Low Month
Sep
-0.15 vs avg
Range
93%
peak vs low
Years
11
2016-2026
Corporate structure
Navigate the merchant hierarchy
Fashion & Leather
Watches & Jewelry
Perfumes & Cosmetics
Wine, Spirits & Travel
Luxury
Premium
Select
Longer Stays
Applications
Power your investment research
Revenue Estimation
Estimate merchant revenue trends before earnings announcements using normalized spend per panelist across markets.
Sector Benchmarking
Compare spending trends across retailers, restaurants, and travel companies to identify sector-wide momentum shifts.
Cross-Border Analysis
Analyze regional performance differences across UK, Germany, France, Spain, Italy, and Austria markets.
Event Impact
Measure the spending impact of product launches, promotions, and macroeconomic events on consumer behavior.
Channel Mix
Track the shift between online, offline, and buy-now-pay-later channels to understand changing consumer behavior.
Fraud & Returns
Analyze refund patterns and identify merchants with high return activity to assess product quality and customer satisfaction.
Market Share Tracking
Monitor competitive positioning and track market share shifts over time to identify emerging winners and losers.
Promotional Effectiveness
Measure the impact of marketing campaigns, seasonal promotions, and discount strategies on consumer spending patterns.
Core data fields
Everything you need to analyze consumer trends
Where and how are people spending?
name— the merchant (Nike, Zara, Lidl, etc.)user_country— where the consumer is (UK, DE, FR, ES, IT, AT)channel— how they paid (online, in-store, or buy now pay later)transaction_date— when the spending happened
How much are people spending?
spend_out_spend— money spent by consumers on purchases (negative, like a withdrawal from your bank account)spend_in_spend— money returned to consumers from refunds (positive, like a deposit to your bank account)total_spend— net spending after refunds
Where does this spending go?
parent_name— the company that owns the merchantticker— the company's stock tickersector— the broad economic category for this companyindustry— the specific business category for this company
// GET https://api.massive.com/consumer-spending/eu/v1/merchant-aggregates?name=nike
{
"results": [{
"type": "merchant",
"name": "nike",
"transaction_date": "2026-03-15",
"published_date": "2026-03-20",
"mcc_group": "sports clothing & apparel",
"merchant_ticker": "NKE US",
"parent_name": "NIKE Inc",
"merchant_industry": "Apparel/ Footwear & Acc Design",
"user_country": "DE",
"channel": "offline",
"consumer_type": "consumer_credit",
"transaction_currency": "EUR",
"total_spend": -1791.75,
"total_transactions": 25,
"total_accounts": 25,
"spend_out_spend": -1962.74,
"spend_in_spend": 170.99,
"eight_day_rolling_category_accounts": 3054,
"twenty_eight_day_rolling_category_accounts": 9284
},
{
"type": "merchant",
"name": "nike",
"transaction_date": "2026-03-15",
"published_date": "2026-03-20",
"mcc_group": "sports clothing & apparel",
"merchant_ticker": "NKE US",
"parent_name": "NIKE Inc",
"merchant_industry": "Apparel/ Footwear & Acc Design",
"user_country": "DE",
"channel": "online",
"consumer_type": "consumer_credit",
"transaction_currency": "EUR",
"total_spend": -2335.28,
"total_transactions": 21,
"total_accounts": 21,
"spend_out_spend": -2515.26,
"spend_in_spend": 179.98,
"eight_day_rolling_category_accounts": 3054,
"twenty_eight_day_rolling_category_accounts": 9284
}]
}Subscribe for instant access
European Consumer Spending by Merchant
Daily consumer spending totals by merchant across European markets. Data has a 30-day embargo.
Individual use only
Get startedNeed consumer spending data for your business?
Gain a competitive edge by leveraging alternative data on the Massive platform to build your big idea.
Developer-friendly access
Explore more data
All US Exchanges + Darkpool and OTC
- Tickers
- 32,345+
- Coverage Start
- September 1, 2003
- Rows
- 350 Billion+
All US Exchanges + Darkpools
- Tickers
- 1,670,030+
- Coverage Start
- July 18, 2014
- Rows
- 722 Billion+
S&P, Dow Jones, FTSE, and more
- Tickers
- 11,409+
- Coverage Start
- March 9, 2023
- Rows
- 20 Million+
Forex and Crypto Currencies
- Tickers
- 1,750+
- Coverage Start
- September 24, 2009
- Rows
- 2 Billion+
Built for engineers
Efficient, reliable, and designed to help developers build confidently and move quickly.