Skip to main content
GET
/
v1
/
chart
/
quotes
Get Real-Time Quotes
curl --request GET \
  --url https://api.aries.com/v1/chart/quotes \
  --header 'Authorization: Bearer <token>'
{
  "d": [
    {
      "n": "NASDAQ",
      "s": "AAPL",
      "v": {
        "ask": 130.92,
        "bid": 130.88,
        "ch": 2.15,
        "chp": 1.67,
        "description": "Apple Inc. Common Stock",
        "exchange": "NASDAQ",
        "high_price": 131.25,
        "low_price": 129.3,
        "lp": 130.89,
        "open_price": 129.5,
        "prev_close_price": 128.74,
        "short_name": "Apple Inc.",
        "volume": 45678900
      }
    },
    {
      "n": "NASDAQ",
      "s": "GOOGL",
      "v": {
        "ask": 130.55,
        "bid": 130.48,
        "ch": -1.25,
        "chp": -0.95,
        "description": "Alphabet Inc. Class A Common Stock",
        "exchange": "NASDAQ",
        "high_price": 131.8,
        "low_price": 130.1,
        "lp": 130.5,
        "open_price": 131.2,
        "prev_close_price": 131.75,
        "short_name": "Alphabet Inc.",
        "volume": 23456789
      }
    }
  ],
  "s": "ok"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

symbols
string
required

Comma-separated list of stock symbols to get quotes for

Response

Quotes retrieved successfully

d
object[]

Array of quote data for requested symbols

s
enum<string>

Status of the response

Available options:
ok,
error