StyloDocs
Workflow blocks

Scrape URL

Scrape content from a URL

View as Markdown

firecrawl/scrape — Scrape content from a URL.

Where it appears

The Scrape URL block lives in the Integrations group of the Workflow Builder. Connect the Firecrawl integration before adding it.

Fields

FieldTypeRequiredDefaultDescription
urltext (supports references)YesThe web page URL to scrape. Use a literal URL or <StepName.field> to reference a URL from a previous step.
includeScreenshottoggleNofalseWhen on, also capture a screenshot of the page alongside the scraped content. Defaults to off.

Inputs and outputs

Inputs are the configurable fields above. The block produces these outputs:

Outputs

Reference an output downstream with <Scrape URL.field>.

NameTypeDescription
successbooleanWhether scraping succeeded
contentstringScraped content
markdownstringContent as markdown
errorstringError message if failed

Example

A minimal configuration for this block:

{
  "type": "firecrawl/scrape",
  "config": {
    "url": "<PreviousStep.field>",
    "includeScreenshot": false
  }
}

Limits and failure modes

  • Requires a connected Firecrawl integration. Calls fail if that integration is disconnected or its authorization has expired.
  • Required field (url) must be set, or the block fails validation before it runs.
  • On failure the error output is populated; downstream blocks that reference other outputs may not receive values.

On this page