JSON Parse
Turn a JSON string into a structured object the rest of your workflow can use.
Audience
Creators building and publishing workflows.
Overview#
JSON Parse converts valid JSON text into a value for downstream blocks. Invalid JSON fails the block with a parsing error; it is never silently converted or ignored.
Use it when an LLM or HTTP step returns JSON as a string and the next block needs structured fields.
JSON Parse
Ports#
- Input: JSON String: Text containing valid JSON from an upstream block.
- Output: Parsed Object: The parsed structure for conditions, loops, or further processing.
Inspector#
JSON Parse has no inspector settings. Behavior comes entirely from the connected input.
Tips#
- Only connect input you expect to be valid JSON text.
- Pair with LLM prompts that explicitly ask for machine-readable JSON.
- Common after HTTP Request or LLM Chat when the next step needs object fields.
- If parsing fails, fix the upstream format before adding more downstream logic.
Related#
Was this useful?
Your response helps us improve the documentation.