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
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

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

One or more index identifiers to fetch real-time values for, comma-separated. For Symbol-type identifiers, use the full <SYMBOL>.<GROUP> form (e.g. SPX.IND_CBOM,COMP.IND_CBOM,DJI.IND_DJI). All identifiers in one request must be the same type (set via identifierType).

identifierType
enum<string>
default:Symbol

How to interpret each value in identifiers. Defaults to Symbol. See IndicesIdentifierType for the full set of accepted values. All identifiers in one request must be the same type. Which kind of identifier you are sending in identifier / identifiers. Provide the matching value:

  • Symbol — index ticker (e.g. SPX.IND_CBOM). Default.
  • CIK — SEC Central Index Key.
  • CUSIP — 9-character U.S./Canadian security identifier.
  • ISIN — 12-character international identifier.
  • Valoren — Swiss security identifier.
  • SEDOL — 7-character UK identifier.
  • FIGI — Bloomberg Financial Instrument Global Identifier.
  • CompositeFIGI — country-level composite FIGI.
Available options:
Symbol,
CIK,
CUSIP,
ISIN,
Valoren,
SEDOL,
FIGI,
CompositeFIGI
Example:

"Symbol"

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[]

One entry per requested identifier