Skip to main content
GET
/
v1
/
chart
/
config
Python (SDK)
from finance_dev import FinanceDev, models
import os


with FinanceDev(
    security=models.Security(
        client_id=os.getenv("FINANCEDEV_CLIENT_ID", ""),
        client_secret=os.getenv("FINANCEDEV_CLIENT_SECRET", ""),
    ),
) as fd_client:

    res = fd_client.chart.get_chart_config()

    # Handle response
    print(res)
{
  "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
}

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

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_timescale_marks
boolean

Whether the API supports timescale marks

supports_time
boolean

Whether the API supports time endpoint