Chart Configuration
Retrieves the chart configuration metadata including supported time resolutions, intraday multipliers, and data capabilities. This endpoint provides essential information for initializing charting libraries and understanding available data granularity options.
Use Case: Configure trading chart applications with supported timeframes and resolution settings before requesting historical data.
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
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.
List of supported chart resolutions, including tick-based intervals with a T suffix, minute-based intervals, and daily, weekly, and monthly 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"
]Whether intraday chart data is available
true
Supported intraday multipliers used with minute-based chart resolutions
["1", "5", "15", "30", "60", "240"]Whether daily chart data is available
true
Supported daily multipliers
["1"]Whether weekly and monthly chart data is available
true
Supported weekly multipliers
["1"]Supported monthly multipliers
["1"]Whether the API supports group requests
false
Whether the API supports marks on charts
false
Whether the API supports symbol search
true
Whether the API supports time endpoint
false
Whether the API supports timescale marks
false