Skip to main content
GET
/
v1
/
chart
/
quotes
Get real-time quotes for multiple symbols
curl --request GET \
  --url https://api.tradearies.dev/v1/chart/quotes \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <api-key>'
{
  "s": "ok",
  "d": [
    {
      "s": "<string>",
      "n": "<string>",
      "v": {
        "ch": 123,
        "chp": 123,
        "short_name": "<string>",
        "exchange": "<string>",
        "description": "<string>",
        "lp": 123,
        "ask": 123,
        "bid": 123,
        "open_price": 123,
        "high_price": 123,
        "low_price": 123,
        "prev_close_price": 123,
        "volume": 123
      }
    }
  ]
}
This endpoint provides real-time market quotes including bid/ask prices, last price, change, volume, and other trading details formatted for charts.
Multiple Symbols: Pass a comma-separated list of symbols to retrieve quotes for multiple securities in a single request (e.g., AAPL,MSFT,GOOGL).

Authorizations

X-API-Key
string
header
required
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 symbols. Supports stocks (e.g., 'AAPL'), indices (e.g., 'SPX.IND_CBOM'), and options (e.g., 'AAPL230120C00150000' or 'AAPL 230120C150')

Example:

"AAPL,MSFT,GOOGL"

Response

Quotes retrieved successfully

s
enum<string>
required

Response status

Available options:
ok,
error
d
object[]
required

Array of quote data for requested symbols