Json_value

Hello Guys ,
i need some help. I always get an “Unknown” on the json_value. I would like to have the “CCI” value
I used https://jsonpathfinder.com/ to find the path and added:

  value_template: "{{ value_json.values[0].cci }}"

Bildschirmfoto 2023-02-02 um 23.22.01

the json is:

{"meta":{"symbol":"EUR/USD","interval":"1day","currency_base":"Euro","currency_quote":"US Dollar","type":"Physical Currency","indicator":{"name":"CCI - Commodity Channel Index","time_period":20}},"values":[{"datetime":"2023-02-03","cci":"93.74614"},{"datetime":"2023-02-02","cci":"135.54129"},{"datetime":"2023-02-01","cci":"126.36061"},{"datetime":"2023-01-31","cci":"46.50098"},{"datetime":"2023-01-30","cci":"64.44332"},{"datetime":"2023-01-27","cci":"71.39278"},{"datetime":"2023-01-26","cci":"92.55192"},{"datetime":"2023-01-25","cci":"107.68526"},{"datetime":"2023-01-24","cci":"100.20923"},{"datetime":"2023-01-23","cci":"114.89258"},{"datetime":"2023-01-20","cci":"98.77639"},{"datetime":"2023-01-19","cci":"93.51324"},{"datetime":"2023-01-18","cci":"106.81794"},{"datetime":"2023-01-17","cci":"119.04121"},{"datetime":"2023-01-16","cci":"158.14596"},{"datetime":"2023-01-13","cci":"186.94805"},{"datetime":"2023-01-12","cci":"222.81228"},{"datetime":"2023-01-11","cci":"193.67190"},{"datetime":"2023-01-10","cci":"202.23999"},{"datetime":"2023-01-09","cci":"204.17475"},{"datetime":"2023-01-06","cci":"-67.17655"},{"datetime":"2023-01-05","cci":"-136.63037"},{"datetime":"2023-01-04","cci":"-50.19547"},{"datetime":"2023-01-03","cci":"-41.13961"},{"datetime":"2023-01-02","cci":"103.39440"},{"datetime":"2022-12-30","cci":"122.35153"},{"datetime":"2022-12-29","cci":"92.52978"},{"datetime":"2022-12-28","cci":"66.60830"},{"datetime":"2022-12-27","cci":"77.69915"},{"datetime":"2022-12-26","cci":"66.71454"}],"status":"ok"}

I really appreciate some help

Thanks

Try:

"{{ value_json['values'][0]['cci'] }}"

values is a function name so using it in “dot format” is probably messing things up. Always safer to use bracket notation.

1 Like

Your my Hero, Thanks so much

1 Like