API Documentation

⌘K
GET/api/1/institutional/portfolio/{cik}

Institutional 13-F Portfolio API

Returns the full 13-F portfolio holdings of an institutional investor. Includes all positions with share counts, values, and changes from the latest filing.

Parameters

1
cikstringrequired
path

SEC CIK number

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/institutional/portfolio/0001067983' \
  -H 'Accept: application/json'
200 Response
[
  {
  "cusip": "037833100",
  "name": "APPLE INC",
  "shares": 915560382,
  "value": 157258000,
  "change": -10000,
  "percentage": 49.5
}
]