API Documentation
⌘K
API Key
Get free key GET
/api/1/equity/listList 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
2offsetintegerPagination offset (default 0)
limitintegerNumber 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"
}
}