Skip to main content
GET
/
v1
/
indices
/
realtime
/
values
Get Realtime Indices Values
curl --request GET \
  --url https://api.aries.com/v1/indices/realtime/values \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "identifier": "SPX.IND_CBOM",
      "identifierType": "Symbol",
      "index": {
        "indexName": "S&P 500",
        "symbol": "SPX",
        "indexGroup": "IND_CBOM",
        "valoren": "998434",
        "currency": "USD"
      },
      "value": {
        "high52Weeks": 6978.6,
        "low52Weeks": 4982.77,
        "date": "3/23/2026",
        "time": "5:11:38 PM",
        "utcOffset": -4,
        "volume": 0,
        "open": 6574.96,
        "high": 6651.62,
        "low": 6565.55,
        "last": 6581,
        "close": 6581,
        "changeFromOpen": 6.04,
        "percentChangeFromOpen": 0.0919,
        "previousClose": 6506.48,
        "previousCloseDate": "3/20/2026",
        "changeFromPreviousClose": 74.52,
        "percentChangeFromPreviousClose": 1.1453
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

identifiers
string
required

Comma-separated list of index identifiers (e.g., SPX.IND_CBOM,COMP.IND_CBOM)

identifierType
enum<string>

Type of identifier being used

Available options:
Symbol,
ISIN,
Valoren

Response

Successful response. Each item mirrors the single-index realtime shape: identifier, index metadata, and a value object with OHLC, 52-week range, and change fields.

Batch realtime index quotes returned by GET /v1/indices/realtime/values.

items
object[]
required

One entry per requested identifier