SEC 13F Institutional Holdings
edgar_13f_holdingsInstitutional stock holdings for a fund manager, from its latest SEC Form 13F.
13F filings split the actual holdings into a separate "information table" XML document that the filing index does not point at directly; this locates it, parses every position, and rolls up lots reported separately (different share classes, put/call splits) into one row per issuer.
When to use: seeing what a fund or institution holds and how much, tracking "smart money" positioning, portfolio research.
When NOT to use: real-time positions (13F is filed up to 45 days after quarter end, so this is always historical), short positions (13F does not require disclosing shorts), or non-U.S. filers.
Args:
ticker (string, required): the FILER's ticker (if it has one) or its SEC CIK, e.g. "1067983" for Berkshire Hathaway.
limit (integer, optional, default 25): maximum holdings to return, largest by value first (1-200).
Returns structuredContent: { "cik": "0001067983", "filer": "BERKSHIRE HATHAWAY INC", "periodOfReport": "2026-06-30", "filedAt": "2026-08-14", "totalPositions": 45, "totalValueUsd": 293000000000, "holdings": [ { "issuer": "ALLY FINL INC", "cusip": "02005N100", "valueUsd": 900335661000, "shares": 19593812, "lots": 3 } ], "source": "https://www.sec.gov/edgar" }
Reports the most recently FILED 13F-HR. Values are whole USD, taken directly from the filing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum holdings to return, largest first. Default 25. | |
| ticker | Yes | The FILER's ticker or SEC CIK, e.g. "1067983" for Berkshire Hathaway. |