Workflow blocks
Search Web
Search the web with Firecrawl
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
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
searchQuery | text (supports references) | Yes | — | Text query to search the web for via Firecrawl. Use literal text or <StepName.field> to reference a value from a previous step. |
limit | number | No | 10 | Maximum 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>.
| Name | Type | Description |
|---|---|---|
success | boolean | Whether search succeeded |
results | array | Array of search results |
count | number | Number of results |
error | string | Error 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
erroroutput is populated; downstream blocks that reference other outputs may not receive values.