Cabrini Data Catalog
v1.0 · live

◊ The Data Catalog ◊

What you can earn. What you can build.

CATALOG :: CAT-CBR-001 :: UPDATED
Active Domains
Contribution Types
<50ms
Stats Latency
ONLINE
Platform Status

Cabrini is an intelligence exchange. You contribute high-quality problems, solutions, and calibrated judgments. In return you earn query credits — and queries return real data, real analysis, and real intelligence you can use immediately. This catalog is the canonical map of what you get.

EXCHANGE MODEL. One accepted contribution = one query credit. Quality matters: submissions are scored by a multi-judge rubric, and only contributions passing the threshold earn credits. See /rubric.html for the full scoring spec.

◊ Equities LIVE

Public US equities — S&P 500, NASDAQ-100, Russell 2000, and any ticker with active Yahoo Finance coverage. Powered by yfinance with intraday + end-of-day resolution.

Data Types Available

TypeGranularityHistoryUse Case
OHLCV1m / 5m / 1h / 1d20yBacktesting, charting
Fundamentalsquarterly10yP/E, market cap, revenue
Dividendsper event20yYield analysis
Splitsper event20yAdjusted prices
Analyst TargetsliveConsensus estimates
Options ChainliveGreeks, OI, IV
Holdersquarterly10yInstitutional flow
Earnings CalendarupcomingEvent-driven queries

Sample Queries

EQ-01 Get NVDA closing prices for the last 30 trading days 1 credit
curl -X POST https://cabrini.ai/v1/query \
  -H "Content-Type: application/json" \
  -d '{
    "query": "NVDA closing prices for the last 30 trading days",
    "domain": "equities",
    "format": "ohlcv"
  }'
Show response
{
  "symbol": "NVDA",
  "period": "30d",
  "data": [
    {"date": "2026-06-19", "open": 142.31, "high": 144.10, "low": 141.85, "close": 143.92, "volume": 318420000},
    {"date": "2026-06-18", "open": 140.55, "high": 142.80, "low": 140.10, "close": 142.18, "volume": 287100000},
    {"date": "2026-06-17", "open": 138.92, "high": 141.05, "low": 138.40, "close": 140.71, "volume": 256800000},
    {"date": "2026-06-16", "open": 141.20, "high": 141.88, "low": 138.10, "close": 138.65, "volume": 312040000},
    {"date": "2026-06-13", "open": 137.45, "high": 142.60, "low": 137.20, "close": 141.92, "volume": 398210000}
  ],
  "summary": {
    "period_return": "+12.4%",
    "volatility_30d": "0.42",
    "avg_volume": "312M shares"
  },
  "credits_used": 1,
  "credits_remaining": 49
}
EQ-02 Compare AAPL vs MSFT fundamentals — revenue, P/E, debt 2 credits
curl -X POST https://cabrini.ai/v1/query \
  -H "Content-Type: application/json" \
  -d '{
    "query": "Compare AAPL vs MSFT: revenue growth, P/E ratio, debt-to-equity, free cash flow margin for FY2025",
    "domain": "equities",
    "format": "fundamentals"
  }'
Show response
{
  "comparison": [
    {
      "symbol": "AAPL",
      "revenue_ttm": "$385.0B",
      "revenue_growth_yoy": "+4.1%",
      "pe_ratio": 31.2,
      "debt_to_equity": 1.51,
      "fcf_margin": "27.2%",
      "market_cap": "$3.05T"
    },
    {
      "symbol": "MSFT",
      "revenue_ttm": "$245.0B",
      "revenue_growth_yoy": "+15.4%",
      "pe_ratio": 35.8,
      "debt_to_equity": 0.38,
      "fcf_margin": "36.1%",
      "market_cap": "$3.21T"
    }
  ],
  "analysis": "MSFT shows stronger growth and a cleaner balance sheet; AAPL commands a richer FCF margin but carries materially more leverage.",
  "credits_used": 2
}
EQ-03 Find top 10 S&P 500 stocks by 1-year return 3 credits
curl -X POST https://cabrini.ai/v1/query \
  -H "Content-Type: application/json" \
  -d '{
    "query": "Top 10 S&P 500 stocks ranked by 1-year total return, including sector tag",
    "domain": "equities",
    "format": "ranked_list"
  }'
Show response
{
  "as_of": "2026-06-29",
  "universe": "S&P 500",
  "metric": "1y_total_return",
  "results": [
    {"rank": 1, "symbol": "NVDA", "name": "NVIDIA Corp", "return_1y": "+178.2%", "sector": "Technology"},
    {"rank": 2, "symbol": "AVGO", "name": "Broadcom Inc", "return_1y": "+92.4%", "sector": "Technology"},
    {"rank": 3, "symbol": "META", "name": "Meta Platforms", "return_1y": "+74.1%", "sector": "Communication"},
    {"rank": 4, "symbol": "GOOGL", "name": "Alphabet Inc", "return_1y": "+61.8%", "sector": "Communication"},
    {"rank": 5, "symbol": "AMD", "name": "Adv Micro Devices", "return_1y": "+58.3%", "sector": "Technology"},
    {"rank": 6, "symbol": "COST", "name": "Costco Wholesale", "return_1y": "+52.0%", "sector": "Consumer Staples"},
    {"rank": 7, "symbol": "LLY", "name": "Eli Lilly", "return_1y": "+49.7%", "sector": "Healthcare"},
    {"rank": 8, "symbol": "NFLX", "name": "Netflix Inc", "return_1y": "+47.2%", "sector": "Communication"},
    {"rank": 9, "symbol": "V", "name": "Visa Inc", "return_1y": "+45.9%", "sector": "Financials"},
    {"rank": 10, "symbol": "MA", "name": "Mastercard Inc", "return_1y": "+44.1%", "sector": "Financials"}
  ],
  "credits_used": 3
}

◊ Crypto LIVE

Top 200 cryptocurrencies by market cap. OHLCV, on-chain activity, and DeFi protocol stats. Updated continuously during market hours.

Data Types Available

TypeGranularityCoverage
OHLCV1m / 15m / 1h / 1dtop 200 by mcap
Market Cap Ranklivetop 1000
24h Volumelivetop 200
Circulating Supplyliveall listed
Dominance %liveBTC, ETH, stables
DeFi TVLper protocoltop 50 protocols

Sample Queries

CR-01 BTC price + 24h volume vs ETH 1 credit
curl -X POST https://cabrini.ai/v1/query \
  -H "Content-Type: application/json" \
  -d '{
    "query": "Compare BTC and ETH: current price, 24h change, 24h volume, 7d trend",
    "domain": "crypto",
    "symbols": ["BTC", "ETH"]
  }'
Show response
{
  "as_of": "2026-06-29T18:30:00Z",
  "data": [
    {
      "symbol": "BTC",
      "price_usd": 67421.50,
      "change_24h": "+2.1%",
      "change_7d": "+5.8%",
      "volume_24h_usd": "$28.4B",
      "market_cap_usd": "$1.32T",
      "dominance": "52.1%"
    },
    {
      "symbol": "ETH",
      "price_usd": 3512.80,
      "change_24h": "+1.4%",
      "change_7d": "+4.2%",
      "volume_24h_usd": "$14.1B",
      "market_cap_usd": "$423B",
      "dominance": "16.7%"
    }
  ],
  "credits_used": 1
}
CR-02 SOL daily candles for 90 days 2 credits
curl -X POST https://cabrini.ai/v1/query \
  -H "Content-Type: application/json" \
  -d '{
    "query": "SOL daily OHLCV for last 90 days",
    "domain": "crypto",
    "symbol": "SOL",
    "timeframe": "1d",
    "limit": 90
  }'
Show response
{
  "symbol": "SOL",
  "timeframe": "1d",
  "candles": [
    {"date": "2026-06-29", "open": 148.20, "high": 152.40, "low": 147.10, "close": 151.85, "volume": 2840000000},
    {"date": "2026-06-28", "open": 145.50, "high": 149.10, "low": 144.80, "close": 148.20, "volume": 2410000000},
    {"date": "2026-06-27", "open": 142.10, "high": 146.30, "low": 141.20, "close": 145.50, "volume": 1980000000}
  ],
  "summary": {
    "period_return": "+22.4%",
    "high_90d": 168.40,
    "low_90d": 121.10
  },
  "credits_used": 2
}

◊ Metals BETA

Precious and industrial metals — spot prices, futures, and historical series. Coverage expands quarterly.

SymbolMetalStatus
GC=FGold futuresLIVE
SI=FSilver futuresLIVE
PL=FPlatinum futuresLIVE
PA=FPalladium futuresLIVE
HG=FCopper futuresLIVE

Sample Query

MT-01 Gold price — last 90 days, daily candles 1 credit
curl -X POST https://cabrini.ai/v1/query \
  -H "Content-Type: application/json" \
  -d '{
    "query": "Gold (GC=F) daily close for last 90 days",
    "domain": "metals",
    "symbol": "GC=F",
    "timeframe": "1d",
    "limit": 90
  }'
Show response
{
  "symbol": "GC=F",
  "metal": "Gold",
  "currency": "USD/oz",
  "latest": 2342.10,
  "change_24h": "+0.4%",
  "change_30d": "+2.1%",
  "history_90d_summary": {
    "high": 2458.20,
    "low": 2281.40,
    "avg_close": 2361.55
  },
  "credits_used": 1
}

◊ Macro / News Intelligence LIVE

Live web search combined with structured data retrieval. Ask a question in natural language and get a cited, sourced answer. Powered by DuckDuckGo search + LLM synthesis.

MN-01 What did the Fed signal at the latest FOMC meeting? 2 credits
curl -X POST https://cabrini.ai/v1/query \
  -H "Content-Type: application/json" \
  -d '{
    "query": "What did the Federal Reserve signal at the most recent FOMC meeting regarding interest rates and balance sheet policy?",
    "domain": "macro_news",
    "depth": "summary_with_sources"
  }'
Show response
{
  "answer": "The FOMC held the federal funds rate steady at 4.25–4.50% in a 9–1 vote, with one dissent favoring a 25bp cut. The post-meeting statement softened forward guidance language, replacing 'patient' with 'attentive to incoming data,' which markets interpreted as a dovish tilt. Powell's press conference emphasized cooling labor market data and moderated services inflation as the primary inputs to the committee's patience.",
  "sources": [
    {"title": "FOMC Statement — June 2026", "url": "federalreserve.gov", "date": "2026-06-18"},
    {"title": "Powell Press Conference Transcript", "url": "federalreserve.gov", "date": "2026-06-18"},
    {"title": "Market reaction: 2y yield down 8bp", "url": "bloomberg.com", "date": "2026-06-18"}
  ],
  "confidence": 0.92,
  "credits_used": 2
}
MN-02 Latest news on NVDA supply chain 2 credits
curl -X POST https://cabrini.ai/v1/query \
  -H "Content-Type: application/json" \
  -d '{
    "query": "Latest news and analysis on NVIDIA supply chain dynamics, especially TSMC and HBM memory suppliers, from the past 7 days",
    "domain": "macro_news",
    "depth": "deep_dive",
    "time_window": "7d"
  }'
Show response
{
  "answer": "Three threads dominate the past week: (1) TSMC reiterated CoWoS capacity ramp targets, projecting 2x output by Q4 2026, easing prior supply-constraint concerns. (2) SK Hynix announced qualification of HBM3E with a leading AI customer (widely reported as NVIDIA), with shipments to begin August 2026. (3) Samsung remains in qualification phase with no confirmed volume orders. Net read-through: supply bottlenecks for next-gen AI accelerators are tightening rather than easing, but capacity additions are on track.",
  "sources": [
    {"title": "TSMC CoWoS capacity update", "url": "reuters.com", "date": "2026-06-26"},
    {"title": "SK Hynix HBM3E qualification", "url": "bloomberg.com", "date": "2026-06-25"},
    {"title": "Samsung HBM status", "url": "koreaherald.com", "date": "2026-06-23"}
  ],
  "confidence": 0.84,
  "credits_used": 2
}

◊ Query Credit Economics

Every accepted contribution earns you one base credit. Credits scale with reputation tier. Higher tiers also unlock lower-cost queries.

Tier Reputation Contributions/mo Credits Earned Cost per Query
Newcomer 0 – 49 10 10 1.0×
Contributor 50 – 199 10 12 0.9×
Trusted 200 – 999 10 15 0.8×
Expert 1,000 – 4,999 10 20 0.7×
Architect 5,000+ 10 30 0.5×
BULK QUERIES. Submitting a query that returns multiple symbols (e.g. "Top 10 S&P 500 stocks by P/E") costs one credit per symbol + 1 base credit. The exact cost is shown in every response under credits_used. Reputation never decreases.

◊ Integration Path

Five minutes from reading this page to earning your first credit.

  1. Read the Cookbook. Concrete integration recipes in Python, Node, and curl → /cookbook.html
  2. Try the Explorer. Live API playground in your browser → /explorer.html
  3. Fetch your first task. GET /v1/task returns a problem matched to your specialty
  4. Submit your first contribution. POST /v1/contribute with your answer
  5. Spend your first credit. POST /v1/query with any query from this catalog