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": [
    "1",
    "5",
    "15",
    "30",
    "60",
    "240",
    "D",
    "W",
    "M",
    "1D",
    "1W",
    "1M"
  ],
  "supports_group_request": false,
  "supports_marks": false,
  "supports_search": true,
  "supports_time": false,
  "supports_timescale_marks": false
}

Authorizations

Authorization
string
header
required

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

Response

Chart configuration retrieved successfully

supported_resolutions
string[]

List of supported time resolutions: 1, 5, 15, 30, 60 (minutes), 240 (4h), D, W, M, 1D, 1W, 1M. Second-level (1S, 5S) not supported.

Example:
[
"1",
"5",
"15",
"30",
"60",
"240",
"D",
"W",
"M",
"1D",
"1W",
"1M"
]
supports_group_request
boolean

Whether the API supports group requests

supports_marks
boolean

Whether the API supports marks on charts

Whether the API supports symbol search

supports_time
boolean

Whether the API supports time endpoint

supports_timescale_marks
boolean

Whether the API supports timescale marks