惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
H
Help Net Security
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
V
V2EX
M
MIT News - Artificial intelligence
Vercel News
Vercel News
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
B
Blog RSS Feed
D
Docker
V
Visual Studio Blog
博客园 - 叶小钗
美团技术团队
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat(firecrawl): add keyless scrape support (#94551) · op...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -2,7 +2,8 @@

22

summary: "Firecrawl search, scrape, and web_fetch fallback"

33

read_when:

44

- You want Firecrawl-backed web extraction

5-

- You need a Firecrawl API key

5+

- You want keyless Firecrawl web_fetch

6+

- You need a Firecrawl API key for search or higher limits

67

- You want Firecrawl as a web_search provider

78

- You want anti-bot extraction for web_fetch

89

title: "Firecrawl"

@@ -17,10 +18,12 @@ OpenClaw can use **Firecrawl** in three ways:

1718

It is a hosted extraction/search service that supports bot circumvention and caching,

1819

which helps with JS-heavy sites or pages that block plain HTTP fetches.

192020-

## Get an API key

21+

## Keyless web_fetch and API keys

212222-

1. Create a Firecrawl account and generate an API key.

23-

2. Store it in config or set `FIRECRAWL_API_KEY` in the gateway environment.

23+

The explicitly selected hosted Firecrawl `web_fetch` fallback supports starter

24+

access without an API key. Add `FIRECRAWL_API_KEY` in the gateway environment

25+

or configure it when you need higher limits. Firecrawl `web_search` and

26+

`firecrawl_scrape` require an API key.

24272528

## Configure Firecrawl search

2629

@@ -57,17 +60,23 @@ Notes:

5760

- `baseUrl` defaults to hosted Firecrawl at `https://api.firecrawl.dev`. Self-hosted overrides are allowed only for private/internal endpoints; HTTP is accepted only for those private targets.

5861

- `FIRECRAWL_BASE_URL` is the shared env fallback for Firecrawl search and scrape base URLs.

596260-

## Configure Firecrawl scrape + web_fetch fallback

63+

## Configure Firecrawl web_fetch fallback

61646265

```json5

6366

{

67+

tools: {

68+

web: {

69+

fetch: {

70+

provider: "firecrawl", // explicit selection enables keyless fallback

71+

},

72+

},

73+

},

6474

plugins: {

6575

entries: {

6676

firecrawl: {

6777

enabled: true,

6878

config: {

6979

webFetch: {

70-

apiKey: "FIRECRAWL_API_KEY_HERE",

7180

baseUrl: "https://api.firecrawl.dev",

7281

onlyMainContent: true,

7382

maxAgeMs: 172800000,

@@ -82,13 +91,15 @@ Notes:

82918392

Notes:

849385-

- Firecrawl fallback attempts run only when an API key is available (`plugins.entries.firecrawl.config.webFetch.apiKey` or `FIRECRAWL_API_KEY`).

94+

- The explicitly selected Firecrawl `web_fetch` fallback works without an API key. When configured, OpenClaw sends `plugins.entries.firecrawl.config.webFetch.apiKey` or `FIRECRAWL_API_KEY` for higher limits.

95+

- Choosing Firecrawl during onboarding or `openclaw configure --section web` enables the plugin and selects Firecrawl for `web_fetch` unless another fetch provider is already configured.

96+

- `firecrawl_scrape` requires an API key.

8697

- `maxAgeMs` controls how old cached results can be (ms). Default is 2 days.

8798

- Legacy `tools.web.fetch.firecrawl.*` config is auto-migrated by `openclaw doctor --fix`.

8899

- Firecrawl scrape/base URL overrides follow the same hosted/private rule as search: public hosted traffic uses `https://api.firecrawl.dev`; self-hosted overrides must resolve to private/internal endpoints.

89100

- `firecrawl_scrape` rejects obvious private, loopback, metadata, and non-HTTP(S) target URLs before forwarding them to Firecrawl, matching the `web_fetch` target-safety contract for explicit Firecrawl scrape calls.

9010191-

`firecrawl_scrape` reuses the same `plugins.entries.firecrawl.config.webFetch.*` settings and env vars.

102+

`firecrawl_scrape` reuses the same `plugins.entries.firecrawl.config.webFetch.*` settings and env vars, including its required API key.

9210393104

### Self-hosted Firecrawl

94105

@@ -141,7 +152,7 @@ than basic-only scraping.

141152

`web_fetch` extraction order:

142153143154

1. Readability (local)

144-

2. Firecrawl (if selected or auto-detected as the active web-fetch fallback)

155+

2. Firecrawl (when selected, or auto-detected from configured credentials)

145156

3. Basic HTML cleanup (last fallback)

146157147158

The selection knob is `tools.web.fetch.provider`. If you omit it, OpenClaw