Skip to main content
GET
/
v1
/
chart
/
symbols
Get Symbol Information
curl --request GET \
  --url https://api.aries.com/v1/chart/symbols \
  --header 'Authorization: Bearer <token>'
{
  "description": "Apple Inc.",
  "exchange": "NASDAQ",
  "format": "price",
  "has_intraday": true,
  "has_seconds": true,
  "has_weekly_and_monthly": true,
  "intraday_multipliers": [
    "1",
    "5",
    "15",
    "30",
    "60"
  ],
  "listed_exchange": "NASDAQ",
  "minmov": 1,
  "name": "AAPL",
  "pricescale": 100,
  "session": "0930-1600",
  "supported_resolutions": [
    "1",
    "5",
    "15",
    "30",
    "60",
    "1D",
    "1W",
    "1M"
  ],
  "ticker": "AAPL",
  "timezone": "America/New_York",
  "type": "stock",
  "visible_plots_set": "ohlcv",
  "volume_precision": 0
}

Authorizations

Authorization
string
header
required

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

Query Parameters

symbol
string
required

The stock symbol to get information for (e.g., 'AAPL', 'GOOGL')

Response

Symbol information retrieved successfully

description
string

Full description of the symbol/company

exchange
string

Exchange where the symbol is traded

format
string

Price format (usually 'price')

has_intraday
boolean

Whether intraday data is available

has_seconds
boolean

Whether seconds resolution is available

has_weekly_and_monthly
boolean

Whether weekly and monthly data is available

intraday_multipliers
string[]

Available intraday time multipliers

listed_exchange
string

Primary exchange where the symbol is listed

minmov
number

Minimum price movement

name
string

Symbol name

pricescale
integer

Price scale (e.g., 100 means divide price by 100)

session
string

Trading session hours (e.g., '0930-1600')

supported_resolutions
string[]

Resolutions supported for this symbol

ticker
string

Symbol ticker

timezone
string

Timezone of the exchange (e.g., 'America/New_York')

type
string

Instrument type (stock, etf, index, etc.)

visible_plots_set
string

Visible plots (e.g., 'ohlcv' for OHLC + Volume)

volume_precision
number

Volume precision (decimal places)