Skip to main content
Parse reads a file (PDF, image, DOCX, XLSX, CSV and more) and turns it into structured text with layout: pages, blocks, tables, reading order, and a confidence per block. Every workflow starts with exactly one Parse node, and every other node reads what Parse produced. It lives in the Intelligence section of the Studio palette. Most workflows never configure it. The one choice that matters is the tier (mode): how much work to spend per page, from reading the PDF’s own text layer to a multi-step pass over dense tables.

The node

A Parse node alone is a complete workflow: it returns the document as markdown and nothing else. See Parse-only workflow. The same node, on the agentic tier with the highest effort:

In Studio

Click the Parse node on the canvas to open its panel. The four tiers are the cards at the top; the advanced options sit below them. Configuring the Parse node in Studio

Tiers

Start on Standard. Move a workflow down to Fast or Flash for the document types where it holds up, and up to Agentic only where Standard underperforms. You rarely need Agentic everywhere.

Options

Every field is optional. Omit a field and the default applies. Fields that belong to another tier are accepted and ignored. The schema the API accepts is generated from the same source: Parse node schema.

What it returns

Parse fills the parse section of the run results:
markdown is the whole document as markdown. Each block starts with an <a id="p<page>_b<n>"> anchor and tables are HTML <table> elements, so the text stays quotable and every citation can point at a block. blocks carries the same content block by block with its page, bounding box (fractions of the page size) and confidences: parse_confidence is 0 to 100, layout_confidence is 0 to 1. See Outputs for the CSV, JSON and Excel exports built on top of it.

Connects to

A workflow has exactly one Parse node. The app and the API both reject a second one.

Billing

Billed per page at the tier’s rate (table above). A cache hit costs nothing. Full price list: How credits work.

Examples