API Documentation

⌘K
GET/api/1/charting/compare

Multi-Symbol Compare

Compares price performance of multiple symbols over a time range, with optional normalization (rebase to 100)

Parameters

4
symbolsstringrequired
query

Comma-separated identifiers (max 10)

fromnumber
query

Start timestamp (Unix seconds)

tonumber
query

End timestamp (Unix seconds)

normalizeboolean
query

Rebase all series to 100 at the start

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/charting/compare?symbols=AAPL&from=2025-01-01&to=2025-12-31&normalize=false' \
  -H 'Accept: application/json'
200 Response
{
  "symbols": {
    "symbol": "string",
    "data": {
      "t": 0,
      "c": 0
    }
  }
}