I want to to parse JSON file with Apple Shortcuts. I tried suggestions from How to escape double quotes in JSON. So triple \:
{
"question" : "I would say \\\"what's the hell happened with quotes?!\\\""
}
returns:
And double \:
{
"question" : "I would say \\"what's the hell happened with quotes?!\\""
}
returns:
Any ideas?


To parse double quotes in JSON using Apple Shortcuts, you can escape them with a single forward slash as shown below:
source: [link]