Finance
13F institutional holdings (parsed) API
What a big investment manager owns: we find the latest SEC Form 13F-HR filing, locate its information-table XML, and PARSE it into clean holdings (issuer, CUSIP, value, shares), biggest first. Answers 'what does Berkshire own', '13F holdings for this fund', 'top positions of this manager'. Pass the manager's CIK (or a ticker like BRK-B).
Price$0.01per request
MethodPOST
Route/v1/finance/13f
StatusLive
MIME typeapplication/json
Rate limit30/minute
Cache3600s public
finance13finstitutionalholdingshedge-fundsecportfoliocusip
API URL
Integration docshttps://x402.hexl.dev/v1/finance/13fExample request
{
"cik": "1067983",
"limit": 3
}Example response
{
"cik": "0001067983",
"manager": "BERKSHIRE HATHAWAY INC",
"filing": "13F-HR",
"filedDate": "2026-05-15",
"positionCount": 40,
"totalValue": 300000000000,
"holdings": [
{
"issuer": "APPLE INC",
"cusip": "037833100",
"value": 90000000000,
"shares": 400000000,
"shareType": "SH",
"putCall": null
}
]
}Input schema
{
"type": "object",
"properties": {
"cik": {
"type": "string",
"examples": [
"1067983"
]
},
"ticker": {
"type": "string",
"examples": [
"BRK-B"
]
},
"limit": {
"type": "number",
"default": 25
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}