Chart Preferences
Read Preferences
GET /api/v1/chart?apikey=<key>curl --get 'http://127.0.0.1:5000/api/v1/chart' \
--data-urlencode 'apikey=<your_app_apikey>'Update Preferences
POST /api/v1/chartcurl -X POST 'http://127.0.0.1:5000/api/v1/chart' \
-H 'Content-Type: application/json' \
-d '{
"apikey": "<your_app_apikey>",
"tv_theme": "dark",
"tv_chart_layout": {"interval": "15m"}
}'Last updated