Extract Field

Pull a specific field or dot-notation path from upstream JSON data.

Overview

The Extract Field node reads structured JSON from an upstream node and extracts one field (or a path of nested fields) as its output. It has two input modes: a Dropdown that lists fields detected from the upstream schema, and a Custom path mode where you type a dot-notation path manually. The output can be a single text string, a list of items for fan-out, or a raw JSON value for chaining into another Extract Field or JSON Process node.

This node executes inline (no job created, no credits charged).

When to Use

Configuration

Field Type Default Description
Field dropdown / text "" The field or dot-path to extract. Empty = whole item (returns each array element as-is). Detected options appear when an upstream node is connected.
Mode toggle (auto) dropdown Auto-selected. Switches to Custom path… for arbitrary dot-notation entry.
Output Type select text How the result is emitted to downstream nodes (see below).

Output Type options

Value Behaviour
text Values are joined by newline into a single string. Works with any text-accepting node.
list Each match is a separate list item — supports item:N, fan-out, and List-aware nodes.
json Raw JSON value — use when feeding another Extract Field or a JSON-consuming node.

Inputs & Outputs

Inputs: Any upstream node that emits JSON, a JSON string, or a list.

Outputs: text — the extracted value(s) in the selected format.

Pricing

Free — no credits charged.

Common Use Cases

Tips