API Documentation

GET/api/1/market/quotes/exchanges/{identifier}

Multi-Exchange Quotes

Returns real-time quotes from all exchanges where a stock is listed

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL, 037833100)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/market/quotes/exchanges/US0378331005' \
  -H 'Accept: application/json'
200 Response
{
  "primary": "XNAS",
  "exchanges": {
    "exchange": "XNAS",
    "currency": "USD",
    "bid": 178.4,
    "ask": 178.45,
    "timestamp": 1709312400
  }
}