API Documentation
All endpoints are public, read-only REST APIs returning JSON. Base URL: https://funds.deepdigitalventures.com
Rate limits: No hard rate limits currently. Please be respectful — max ~10 req/s.
Authentication: None required.
Values: Monetary values in holdings endpoints are in thousands of USD (SEC 13F format). Multiply by 1000 for actual dollars.
Quarter format: YYYY-QN, e.g. 2024-Q4
/api/statsAggregate platform statistics — total managers, holdings, AUM, and state distribution.
Example
curl https://funds.deepdigitalventures.com/api/stats
Note: Returns total_aum (sum of 13F portfolio values), state_distribution, and aum_tiers.
/api/advisersSearch and filter SEC-registered investment advisers.
Query Parameters
qstringName search (partial match)statestringTwo-letter US state codeaum_minnumberMinimum AUM in USDaum_maxnumberMaximum AUM in USDsortstringSort field: aum | name | employees (default: aum)orderstringASC or DESC (default: DESC)limitnumberResults per page, max 200 (default: 50)offsetnumberPagination offset (default: 0)Example
curl "https://funds.deepdigitalventures.com/api/advisers?q=blackrock&limit=5"
/api/advisers/[crd]Full details for a single adviser by CRD/CIK number.
Example
curl https://funds.deepdigitalventures.com/api/advisers/2012383
/api/holdingsBrowse 13F institutional holdings — list managers or search by stock.
Query Parameters
modestringmanagers (default) or stocksqstringName search for manager or issuercusipstringExact CUSIP lookup (mode=stocks)quarterstringFilter by quarter, e.g. 2024-Q4limitnumberMax 200 (default: 50)offsetnumberPagination offsetExample
curl "https://funds.deepdigitalventures.com/api/holdings?mode=managers&q=norges&limit=3"
/api/holdings/[cik]Full portfolio for a single manager by CIK.
Query Parameters
quarterstringSpecific quarter (default: latest)Example
curl https://funds.deepdigitalventures.com/api/holdings/1374170
Note: Returns manager metadata and holdings array. Value is in thousands of USD.
/api/holdings/[cik]/timelineQuarter-by-quarter portfolio history for a manager.
Example
curl https://funds.deepdigitalventures.com/api/holdings/2012383/timeline
Note: Returns array of quarters with total_value, position_count, equity_value, options_count.
/api/crowdedMost widely held stocks across all institutional managers for a given quarter.
Query Parameters
quarterstringQuarter to analyse (default: latest)limitnumberMax 100 (default: 50)Example
curl "https://funds.deepdigitalventures.com/api/crowded?limit=10"
Note: Returns equity-only positions. manager_count = number of distinct managers holding the stock.
/api/smart-moneyQuarter-over-quarter position changes: new entries, biggest inflows, and top exits.
Query Parameters
limitnumberMax 100 (default: 30)Example
curl https://funds.deepdigitalventures.com/api/smart-money
Note: Compares the two most recent quarters. value fields are in thousands of USD.
/api/overlapPortfolio overlap between 2–5 managers. Returns shared positions and similarity matrix.
Query Parameters
ciksstringrequiredComma-separated CIK list (2–5 values)Example
curl "https://funds.deepdigitalventures.com/api/overlap?ciks=2012383,1374170"
Note: Uses the most recent quarter where ALL managers have filed. similarity_matrix[cik1][cik2] = shared CUSIP count.
/api/compareSide-by-side comparison of two managers including shared positions.
Query Parameters
cik1stringrequiredFirst manager CIKcik2stringrequiredSecond manager CIKExample
curl "https://funds.deepdigitalventures.com/api/compare?cik1=2012383&cik2=895421"
/api/macroMacro economic time series from FRED (requires FRED ingestion).
Example
curl https://funds.deepdigitalventures.com/api/macro
Note: Returns array of series with metadata and up to 500 observations each.