i’m giving N8N another try…, I noticed this has been asked ( and probalby solved a few times in the forums. ). But I still can’t see to get the right json expression.
I’m receiving some json ( by webhook ).
The json seems valid, atleast the json lint website says it is.
@mr.dipp , it has to be a regular JSON. From what I see in your screenshot, it is not actually a JSON. Are you sure that is what your webhook node receives?
{
"alert": "Custom step condition triggered",
"ticker": "TURBOUSDT.P",
"tf": "15S",
"ohlcv":{
"open": 0.0046815,
"high": 0.0046895,
"low": 0.0046713,
"close": 0.004672,
"volume": 24239.091,
"order block buy volume": {ob_buy_volume}, // This will break parsing
"order block sell volume": {ob_sell_volume}, // This will break parsing
"order block total volume": {ob_volume} // This will break parsing
},
"bartime": 1716726300000
}
If that is so, you might need to use RegEx to extract specific values. Alternatively, replace the offending properties first (ob_buy_volume, ob_sell_volume, ob_volume) with valid ones and then parse the string.