Skip to main content
GET
/
v1
/
chart
/
config
Get chart configuration
curl --request GET \
  --url https://api.tradearies.dev/v1/chart/config \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <api-key>'
{
  "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_timescale_marks": false,
  "supports_time": false
}
This endpoint returns the Universal Data Feed (UDF) configuration that defines the capabilities of the chart service, including supported timeframes, resolutions, and features.

Authorizations

X-API-Key
string
header
required
Authorization
string
header
required

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

Response

Chart configuration returned successfully

supported_resolutions
string[]
required

List of supported chart resolutions

supports_group_request
boolean
required

Whether the service supports group data requests

supports_marks
boolean
required

Whether the service supports marks on the chart

Whether the service supports symbol search

supports_timescale_marks
boolean
required

Whether the service supports timescale marks

supports_time
boolean
required

Whether the service supports time synchronization