API Documentation

GET/api/1/market/analytics/52week/{ticker}

52-Week Analytics

Returns price range statistics (high, low, position) for a given ticker and time range

Parameters

2
rangestring
query

Time range: 1m, 3m, 6m, ytd, 1y, 2y, 5y, 10y, max

tickerstringrequired
path

Ticker symbol (e.g. AAPL)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/market/analytics/52week/AAPL?range=1y' \
  -H 'Accept: application/json'
200 Response
{
  "range": "1y",
  "days": 365,
  "low": 142.5,
  "high": 198.23,
  "currentPrice": 178.72,
  "rangePosition": 65
}