API Documentation

⌘K
GET/api/1/index/constituents/{id}

Index Constituents

Returns companies in a stock market index (S&P 500, DAX, etc.)

Parameters

3
startnumber
query

Pagination offset (default 0)

endnumber
query

Pagination end (default 500)

idstringrequired
path

Index identifier (e.g. sp500, dax, nasdaq100, dowjones)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/index/constituents/sp500?start=0&end=500' \
  -H 'Accept: application/json'
200 Response
[
  {
  "isin": "US0378331005",
  "ticker": "AAPL",
  "name": "Apple",
  "country": "US",
  "sector": "Technology",
  "industry": "Consumer Electronics",
  "mcap": 0
}
]