API Documentation
⌘K
API Key
Get free key 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
2rangestringTime range: 1m, 3m, 6m, ytd, 1y, 2y, 5y, 10y, max
tickerstringrequiredTicker 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
}