The only API built exclusively for dividend investors
Google Sheets + Excel compatible. Dividend Aristocrats. 50+ years of history. Sub-100ms responses. Built by income investors, for income investors.
Free tier gives you the essentials. Upgrade for advanced metrics.
Free Tier Includes:
Upgrade to Starter ($9/mo) for full attribute access: PE ratio, volume, market cap, dividend history, Aristocrat detection, and more
Your 20-stock portfolio checking prices 5x/day = ~3,000 calls/month (30% of free tier)
Get Started Free100% parity with Google Sheets, but with superior dividend data
=GOOGLEFINANCE("AAPL", "price")
=GOOGLEFINANCE("AAPL", "high52")
=GOOGLEFINANCE("AAPL", "low52")
=GOOGLEFINANCE("AAPL", "pe")
β Multiple formulas needed
β Limited dividend data
β Stale data
β No Aristocrats/Kings=DIVV("AAPL", "price")
=DIVV("AAPL", "yearHigh")
=DIVV("AAPL", "dividendYield")
=DIVV("AAPL", "peRatio")
β
Familiar GOOGLEFINANCE() syntax
β
Complete dividend history
β
Aristocrats/Kings included
β
50+ years of history
β
Free tier: 5,000 calls/moFeatures you won't find in generic financial APIs
Instantly identify stocks with 25+ or 50+ years of consecutive dividend increases. No manual calculation needed.
Historical dividends + future ex-dates. Track monthly, quarterly, and special dividends with precise payment schedules.
Yield, payout ratio, growth rates, sustainability scores. Everything an income investor needs in one endpoint.
High-yield, monthly payers, Aristocrats, Kings, high-growth dividends. Start analyzing immediately.
Track covered call ETFs, REITs, BDCs, and income funds. AUM, expense ratios, holdings composition.
Google Sheets + Excel compatible. GOOGLEFINANCE() parity means drop-in replacement for your existing models.
Because dividend data has unique requirements that generic APIs ignore
Save 80-95% vs. generic APIs. Get better dividend data.
See Pricing ComparisonComprehensive coverage across North American exchanges
Major Markets
TSX & More
Alternative Trading
See how dividend investors are using Divv API
Identify stable, reliable dividend growers with 25+ years of consecutive increases
curl "api.divv.com/v1/screeners/dividend-aristocrats?limit=10"
# Returns stocks like:
# JNJ - 61 years of increases
# PG - 67 years of increases
# KO - 61 years of increasesBuild a portfolio with monthly dividend payments for consistent cash flow
curl "api.divv.com/v1/screeners/monthly-payers?min_yield=5"
# Find monthly payers like:
# JEPI, JEPQ, O, STAG, MAIN
# Perfect for retirement incomeFind stocks with strong dividend growth rates for compounding income
curl "api.divv.com/v1/stocks/MSFT/metrics"
# Get complete metrics:
# - Current yield: 0.8%
# - 5yr growth rate: 10.2%
# - Payout ratio: 25%
# - Years of increases: 19Use =DIVV() just like GOOGLEFINANCE() - familiar syntax, better data
// Add to Google Sheets (Tools > Script Editor)
function DIVV(symbol, attribute) {
const url = `api.divv.com/v1/stocks/${symbol}/quote`;
const response = UrlFetchApp.fetch(url);
const data = JSON.parse(response.getContentText());
return data[attribute] || data;
}
// Then use like GOOGLEFINANCE:
=DIVV("AAPL", "price")
=DIVV("JNJ", "dividendYield")
=DIVV("PG", "yearHigh")