meta.source: sugra_finance); regulatory and academic upstreams are named openly: SEC EDGAR, FINRA, CFTC, the Federal Reserve, the ECB, the UK FCA, Japan FSA EDINET and the Fama-French data library. A growing share of the catalog is computed on the platform itself - indicators, event studies, PEAD, intrinsic-value models and fundamentals rebuilt from primary SEC filings. Responses share the standard data + meta envelope. Nothing in this direction is investment advice.| API Reference category | Endpoints | Coverage |
|---|---|---|
| Finance | 121 | The /api/v2 market surface on the Sugra Finance feed: quotes, OHLCV history, options chains, screeners, market calendars (earnings, dividends, splits), exchange schedules and holidays, futures contracts and term-structure curves; plus FINRA short interest, SEC fails-to-deliver, market-structure metrics, Fama-French factor datasets, valuation multiples and OpenFIGI identifier mapping |
| Technical Indicators | 113 | Indicators computed on the platform from the market feed: moving averages and overlays, momentum oscillators, volatility bands and channels, volume studies, statistics (beta, correlation, z-score) and candlestick pattern detection |
| Hedge Fund Intelligence | 67 | SEC 13F holdings, per-security consensus and fund overlap, SEC Form ADV advisers, CFTC COT futures positioning, UK FCA disclosed short positions, Federal Reserve Z.1 hedge-fund aggregates, ECB securities-holdings statistics |
| Fundamentals | 34 | Income statement, balance sheet, cash flow, ratios and concept history rebuilt from SEC EDGAR XBRL with filing-level provenance, plus EDINET filings and financials for Japan |
| Equities Indices | 13 | S&P 500 constituents, earnings event studies and PEAD, intrinsic-value and earnings-quality models, sector percentiles, analyst actions |
| Funds & ETFs | 12 | ETF universe and per-symbol snapshots, holdings from SEC filings, sector weightings, aggregate and per-fund flows |
| SEC EDGAR | 11 | Daily filing index, insider transactions and holdings by CIK, 8-K material events, 13D/G positions, 10-K item extraction and similarity, delistings |
| Options | 7 | Per-symbol option snapshots, IV surface, put-call ratio history, implied move, unusual volume |
| Insiders | 2 | Insider transactions and sentiment from SEC Forms 4/5 |
| Earnings | 1 | Earnings calendar |
GET /api/v2/quotes/{symbol}/price returns the current quote for any listed symbol.{
"data": {
"symbol": "NVDA",
"shortName": "NVIDIA Corporation",
"exchange": "NMS",
"regularMarketPrice": 202.81,
"regularMarketChangePercent": -0.0221311,
"regularMarketVolume": 138213660,
"marketCap": 4912260841472
},
"meta": {"endpoint": "/api/v2/quotes/NVDA/price", "source": "sugra_finance"}
}/historical (OHLCV), /options (chains), /dividend and /earnings-history; GET /api/v2/market/batch-quotes fetches many symbols in one call.GET /api/v1/indicators/rsi computes RSI on the platform. All 113 indicator endpoints share the same parameter shape: symbol, time_period, interval, range, outputsize; time_period accepts comma-separated values for several lookback windows in one call.{
"data": {
"symbol": "ASML",
"indicator": "rsi",
"series_by_period": {
"14": [
{"date": "2026-07-17T13:30:00Z", "value": 47.9729094227736},
{"date": "2026-07-16T13:30:00Z", "value": 50.456300206661695}
]
}
},
"meta": {"endpoint": "/api/v1/indicators/rsi", "source": "sugra_finance"}
}GET /api/v1/sec/13f/{cik}/holdings returns a manager's full quarterly 13F portfolio from SEC filings.{
"data": {
"manager_name": "Berkshire Hathaway Inc",
"period_of_report": "31-MAR-2026",
"position_count": 90,
"total_value_usd_thousands": 263095703570,
"positions": [
{
"issuer": "ALLY FINL INC",
"cusip": "02005N100",
"value_usd_thousands": 498992850,
"shares": 12719675
}
]
},
"meta": {"endpoint": "/api/v1/sec/13f/1067983/holdings", "source": "sec_13f"}
}GET /api/v1/sec/13f/holders-of/{cusip} inverts the view to every filer holding a security; /consensus/{cusip} and /funds/overlap compose across filers.GET /api/v1/fundamentals/{ticker}/ratios computes margin, return, leverage and liquidity ratios from SEC EDGAR XBRL facts. A provenance block links each statement to its accession number and filing URL.{
"data": {
"ticker": "MSFT",
"as_of": "2025-06-30",
"source": "SEC EDGAR XBRL",
"ratios": {
"gross_margin": 0.6882374238616519,
"operating_margin": 0.4562195624085985,
"return_on_equity": 0.2964722734140952,
"debt_to_equity": 0.12562922332951942
}
}
}/income, /balance and /cashflow return the underlying statements; usd=true converts foreign filers at period-end rates.meta.source on every call.