Skip to main content

JSON: From String

Parse a JSON string into a structured JSON value. Useful when JSON arrives as text (e.g. from an HTTP body, a webhook field, or a CSV cell).

Example
Input: '{"id": 1, "name": "alice"}'
Output: {"id": 1, "name": "alice"}

Parameters

Skip on error

When enabled, invalid JSON soft-skips the step (no output, no failure). When disabled (default), parse errors fail the step.

Input

StringREQUIRED
JSON-encoded text to parse.

Output

JSON
The parsed JSON value.