Pull Maplebear Inc.'s full dividend history (per-share payouts or trailing yield) into your own models, spreadsheets and apps with the Business Quant Dividends API. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/dividends?ticker=CART&mode=dps&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/dividends"
params = {"ticker": "CART", "mode": "dps", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/dividends?ticker=CART&mode=dps&api_key=YOUR_API_KEY");
const data = await res.json();