StyloDocs
Workflow blocks

Firecrawl

Scrape pages and search the web with Firecrawl

View as Markdown

firecrawl — Scrape pages and search the web with Firecrawl.

Where it appears

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

Fields

FieldTypeRequiredDefaultDescription
resourceselectYeswebWhich Firecrawl resource to work with. Options: web.
operationselectYesWhich action to perform on the selected resource.
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.
searchQuerytext (supports references)YesText query to search the web for via Firecrawl. Use literal text or <StepName.field> to reference a value from a previous step.
limitnumberNo10Maximum number of search results to return. Defaults to 10.

Inputs and outputs

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

Outputs

Reference an output downstream with <Firecrawl.field>.

NameTypeDescription
successbooleanWhether scraping succeeded
contentstringScraped content
markdownstringContent as markdown
errorstringError message if failed
resultsarrayArray of search results
countnumberNumber of results

Example

A minimal configuration for this block:

{
  "type": "firecrawl",
  "config": {
    "resource": "web",
    "operation": "...",
    "url": "<PreviousStep.field>",
    "includeScreenshot": false,
    "searchQuery": "<PreviousStep.field>",
    "limit": 10
  }
}

Limits and failure modes

  • Requires a connected Firecrawl integration. Calls fail if that integration is disconnected or its authorization has expired.
  • Required fields (resource, operation, url, searchQuery) 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