Skip to Content
ResourcesIntegrationsDeveloper ToolsFirecrawl

Firecrawl

Service domainWEB SCRAPING
Firecrawl icon
Arcade OptimizedBYOCPro

Arcade.dev LLM tools for reading the web via Firecrawl

Author:Arcade
Version:4.0.0
Auth:No authentication required
12tools
12require secrets

Firecrawl Toolkit

Firecrawl is a web-reading service; this toolkit gives LLMs structured access to scrape, crawl, search, and extract data from the web via the Firecrawl API.

Capabilities

  • Single-page and multi-page retrieval: Scrape a known URL for its full text, or crawl an entire site and collect every page's content, with async job management (status checks, partial data reads, and cancellation).
  • Site mapping: List all URLs on a website without fetching page content — useful for planning targeted scrapes or crawls.
  • Web search: Search the open web with optional inline page reading; specialized variants target scientific literature (PubMed, bioRxiv, medRxiv, arXiv) and developer documentation/repositories (including GitHub issues separately).
  • Structured data extraction: Describe desired fields in plain language (products, prices, contacts, etc.) and receive structured records rather than raw page text; supports async job tracking for long-running extractions.

Secrets

FIRECRAWL_API_KEY — A Firecrawl API key used to authenticate every request to the Firecrawl API. To obtain one, sign in to the Firecrawl dashboard, navigate to API Keys, and create a new key. The key is scoped to your Firecrawl account and controls usage limits based on your plan tier; ensure the plan supports the volume of scrapes, crawls, and extractions your application requires.

Add this secret to your Arcade environment via the Arcade secrets dashboard or follow the Arcade secrets configuration guide.

Available tools(12)

12 of 12 tools
Operations
Behavior
Tool nameDescriptionSecrets
Stop a crawl that is still running. Pages the crawl already collected stay available through GetCrawlData.
1
Read many pages of one website and return each page's content. A crawl that outruns wait_seconds keeps running: the result carries its job_id, and GetCrawlStatus, GetCrawlData, and CancelCrawl take it from there.
1
Collect structured records from the web from a plain-language description. Use this when the answer is fields such as products, prices, or contacts. Use ScrapeUrl or CrawlWebsite when the answer is the page text itself. An extraction that outruns wait_seconds keeps running, and GetExtractStatus takes its job_id.
1
Read the pages a crawl has collected so far.
1
Check how far a crawl has progressed, without fetching its pages.
1
Collect the results of an extraction that is already running.
1
List the URLs on a website, without reading the pages. Use CrawlWebsite to read the content of many pages, or ScrapeUrl for one.
1
Read one web page whose URL is already known and return its content. Use Search instead when the URL is unknown, MapWebsite to list a site's URLs, CrawlWebsite to read many pages of one site, and ExtractData to pull structured fields rather than page text.
1
Search the web and optionally read each result page in the same call. Use this when no URL is known yet. Use SearchResearchPapers for scientific literature and SearchDeveloperDocs for API and code documentation.
1
Search developer documentation and repositories, quoting the text that matched. Use this to answer a question about how a library or API works. Use Search for the open web, and SearchGithubIssues to look only at issues.
1
Search GitHub issues across indexed repositories. Use SearchDeveloperDocs instead to search documentation, READMEs, and pull requests alongside issues.
1
Search published scientific papers and return their abstracts. This reads a corpus of paper records drawn from PubMed, bioRxiv, medRxiv, and arXiv. To find ordinary web pages that happen to sit on academic sites, use Search narrowed to research instead.
1
Last updated on