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

Query Parameters

symbols
string
required
Example:

Response

s
enum<string>
required
Available options:
ok,
error
d
object[]
required