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>'
{
  "indices": [
    {
      "symbol": "SPX",
      "indexName": "S&P 500",
      "value": 6850.25,
      "change": 15.75,
      "percentChange": 0.23,
      "timestamp": "2025-01-12T15:30:00Z"
    },
    {
      "symbol": "COMP",
      "indexName": "NASDAQ Composite",
      "value": 19750.5,
      "change": -25.3,
      "percentChange": -0.13,
      "timestamp": "2025-01-12T15:30:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

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

200 - application/json

Successful response

indices
object[]