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": [
    "1S",
    "5S",
    "10S",
    "15S",
    "30S",
    "1",
    "5",
    "15",
    "30",
    "60",
    "240",
    "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 for charts

Example:
[
"1S",
"5S",
"1",
"5",
"15",
"30",
"60",
"240",
"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