API Documentation

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

Quote API

Returns the quotes for the given Identifier (ISIN or Crypto Symbol) and timeframe. Dates are in milliseconds since 1970.

Parameters

3
startdatenumber
query

Start date in milliseconds since 1970

enddatenumber
query

End date in milliseconds since 1970

identifierstringrequired
path

ISIN of the stock

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity/quotes/US0378331005?startdate=1704067200000&enddate=1735689600000' \
  -H 'Accept: application/json'
200 Response
[
  {
  "timestamp": 1732621245000,
  "price": 123.23
}
]