API Documentation

⌘K
GET/api/1/equity/shares-outstanding/{identifier}

Historical Shares Outstanding API

Returns historical diluted average shares outstanding per fiscal year for the given ISIN. Shows how share count has changed over time due to buybacks, issuances, and stock splits.

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity/shares-outstanding/US0378331005' \
  -H 'Accept: application/json'
200 Response
[
  {
  "year": "2024",
  "period": "2024-06-30T00:00:00.000Z",
  "sharesOutstanding": 15460000000,
  "dilutedEPS": 6.13
}
]