API Documentation

⌘K
GET/api/1/equity/ownership/{identifier}

Stock Ownership API

Returns a list of owners for the given stock isin

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity/ownership/US0378331005' \
  -H 'Accept: application/json'
200 Response
[
  {
  "name": "Warren Buffett",
  "share": 50000,
  "change": 1000,
  "filingDate": "2023-01-01T00:00:00.000Z",
  "symbol": "AAPL",
  "percent": 3
}
]