API Documentation

⌘K
GET/api/1/equity/list

List All Stocks API

Returns a paginated list of all stocks sorted by market capitalization descending. Use offset and limit for pagination. Comparable to Finnhub /stock/symbol.

Parameters

2
offsetinteger
query

Pagination offset (default 0)

limitinteger
query

Number of results (default 100, max 2000)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity/list?offset=0&limit=10' \
  -H 'Accept: application/json'
200 Response
{
  "offset": 0,
  "limit": 100,
  "total": 35000,
  "results": {
    "isin": "US0378331005",
    "ticker": "AAPL",
    "name": "Apple",
    "sector": "Technology",
    "wkn": "865985"
  }
}