Skip to main content
Most Pulse workflows start the same way: run Extract to create a reusable extraction_id. The question is what you do next.

Quick Picker

Common Decisions

Schema or Tables?

Use Schema when your final output is a JSON object with named fields:
Use Tables when the table itself is the output, especially if row and column relationships matter:
Many production workflows use both: Tables to preserve complex financial schedules and Schema to extract summary fields.

Split or Page Range?

Use a page range when you already know where the content lives, such as 1-5 for a cover memo. Use Split when the location changes across documents or when topics are semantic rather than fixed by page number. Split assigns pages to named topics and returns a split_id you can reuse with Schema or Tables.

Inline Config or Saved Preset?

Use inline config while you are experimenting. Use saved presets once a workflow is stable:
  • Extract presets store settings like page range, figures, chunking, and spreadsheet options.
  • Split presets store topic names and descriptions.
  • Schema presets store JSON Schema and prompts.
  • Table presets store merge and chart-to-table settings.
Saved presets keep production code smaller and make changes easier to roll out.
  1. Start in the Platform Quickstart with one representative document.
  2. Use this picker to choose your next step.
  3. Save presets only after output quality looks right.
  4. Use Show Code to move into the API.
  5. Use Chaining Steps to understand how IDs connect each step.
You can always rerun Schema, Split, or Tables from a saved extraction. You usually do not need to upload and extract the document again while iterating on downstream steps.