Skip to main content
Takes an input JSON string from the context and converts it to actual JSON. Use this when a value in your flow holds JSON as plain text, for example the body of an API response or a field read from a file, and you want to work with it as structured data you can map and transform. Once parsed, you can reach into its fields directly instead of treating the whole thing as one block of text.

Fields

Sample data

Input:
"{\"order\":{\"id\":1024,\"customer\":\"Maria\",\"total\":49.95}}"
Output:
{
    "order": {
        "id": 1024,
        "customer": "Maria",
        "total": 49.95
    }
}