Skip to main content
GET
/
v1
/
chart
/
config
Get Chart Configuration
curl --request GET \
  --url https://api.aries.com/v1/chart/config \
  --header 'Authorization: Bearer <token>'
{
  "supported_resolutions": [
    "1T",
    "5T",
    "10T",
    "25T",
    "50T",
    "100T",
    "250T",
    "500T",
    "1000T",
    "1",
    "3",
    "5",
    "15",
    "30",
    "45",
    "60",
    "120",
    "180",
    "240",
    "1D",
    "1W",
    "1M",
    "3M",
    "6M",
    "12M"
  ],
  "has_intraday": true,
  "intraday_multipliers": [
    "1",
    "5",
    "15",
    "30",
    "60",
    "240"
  ],
  "has_daily": true,
  "daily_multipliers": [
    "1"
  ],
  "has_weekly_and_monthly": true,
  "weekly_multipliers": [
    "1"
  ],
  "monthly_multipliers": [
    "1"
  ],
  "supports_search": true,
  "supports_group_request": false,
  "supports_marks": false,
  "supports_timescale_marks": false,
  "supports_time": false
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Response

Chart configuration retrieved successfully

Capabilities returned for the charting API. Use this once at startup to configure supported resolutions and chart UI options.

supported_resolutions
string[]

List of supported chart resolutions, including tick-based intervals with a T suffix, minute-based intervals, and daily, weekly, and monthly resolutions.

Example:
[
"1T",
"5T",
"10T",
"25T",
"50T",
"100T",
"250T",
"500T",
"1000T",
"1",
"3",
"5",
"15",
"30",
"45",
"60",
"120",
"180",
"240",
"1D",
"1W",
"1M",
"3M",
"6M",
"12M"
]
has_intraday
boolean

Whether intraday chart data is available

Example:

true

intraday_multipliers
string[]

Supported intraday multipliers used with minute-based chart resolutions

Example:
["1", "5", "15", "30", "60", "240"]
has_daily
boolean

Whether daily chart data is available

Example:

true

daily_multipliers
string[]

Supported daily multipliers

Example:
["1"]
has_weekly_and_monthly
boolean

Whether weekly and monthly chart data is available

Example:

true

weekly_multipliers
string[]

Supported weekly multipliers

Example:
["1"]
monthly_multipliers
string[]

Supported monthly multipliers

Example:
["1"]
supports_group_request
boolean

Whether the API supports group requests

Example:

false

supports_marks
boolean

Whether the API supports marks on charts

Example:

false

Whether the API supports symbol search

Example:

true

supports_time
boolean

Whether the API supports time endpoint

Example:

false

supports_timescale_marks
boolean

Whether the API supports timescale marks

Example:

false