Skip to content

GET /api/v1/us/13f-holdings

Institutional 13F holdings.

Returns institutional 13F holdings reported to the SEC.

Request

GET /api/v1/us/13f-holdings

Headers

HeaderValue
F-API-KEYYour API key

Query Parameters

ParameterTypeRequiredFilterDescription
cikstringNoexactSEC CIK
tickerstringNoexactStock ticker
filing_typestringNoexactFiling type
accession_numberstringNoexactAccession number
cusipstringNoexactCUSIP
manager_namestringNolikeManager name (fuzzy match)
limitintegerNoMax rows per page (default 100, max 1000)
offsetintegerNoRows to skip (default 0)
sortstringNoSort field (default report_period)
orderasc | descNoSort direction (default desc)

Example

Terminal window
curl -H "F-API-KEY: fk-xxxxx" \
"https://finance-api.xp-java.workers.dev/api/v1/us/13f-holdings?ticker=AAPL&limit=10"

Response

{
"code": 0,
"message": "ok",
"data": [
{
"cik": "0001067983",
"ticker": "AAPL",
"filing_type": "13F-HR",
"filing_date": "2024-11-14",
"accession_number": "0001067983-24-000456",
"url": "https://www.sec.gov/Archives/edgar/data/1067983/000106798324000456/0001067983-24-000456-index.htm",
"manager_name": "BERKSHIRE HATHAWAY INC",
"report_period": "2024-09-30",
"issuer": "APPLE INC",
"class_title": "COM",
"cusip": "037833100",
"shares": 300000000,
"value": 67500000000,
"sole_voting": 300000000,
"shared_voting": 0,
"non_voting": 0,
"holding_type": "SH",
"put_call": null,
"updated_at": "2024-11-14T00:00:00Z"
}
],
"meta": {
"total": 10,
"limit": 10,
"offset": 0,
"has_more": false
}
}