StyloDocs
Workflow blocks

Search Web

Search the web with Firecrawl

View as Markdown

firecrawl/search — Search the web with Firecrawl.

Where it appears

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

Fields

FieldTypeRequiredDefaultDescription
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 <Search Web.field>.

NameTypeDescription
successbooleanWhether search succeeded
resultsarrayArray of search results
countnumberNumber of results
errorstringError message if failed

Example

A minimal configuration for this block:

{
  "type": "firecrawl/search",
  "config": {
    "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 field (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