Developer docs

Firecrawl integration

Firecrawl automates web crawling and data extraction, enabling organizations to…

Updated June 2026 30 actions available

Provider
firecrawl
Category
Other
Setup
User-supplied API key
Actions
30 available

Quick start

Call Firecrawl from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Firecrawl's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "FIRECRAWL_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Firecrawl API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

30 actions exposed via the Firecrawl integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 30 actions
  • FIRECRAWL_CRAWL_V2
  • FIRECRAWL_CREDIT_USAGE_GET
  • FIRECRAWL_CREDIT_USAGE_GET_HISTORICAL
  • FIRECRAWL_DEEP_RESEARCH
  • FIRECRAWL_EXTRACT
  • FIRECRAWL_EXTRACT_GET
  • FIRECRAWL_GET_AGENT_STATUS
  • FIRECRAWL_GET_DEEP_RESEARCH_STATUS
  • FIRECRAWL_GET_THE_STATUS_OF_A_CRAWL_JOB
  • FIRECRAWL_LLMS_TXT_GENERATE
  • FIRECRAWL_LLMS_TXT_GET
  • FIRECRAWL_MAP_MULTIPLE_URLS_BASED_ON_OPTIONS
  • FIRECRAWL_QUEUE_GET
  • FIRECRAWL_SCRAPE
  • FIRECRAWL_SEARCH
  • FIRECRAWL_START_AGENT
  • FIRECRAWL_TOKEN_USAGE_GET
  • FIRECRAWL_TOKEN_USAGE_GET_HISTORICAL

Build with Firecrawl

Open OverSkill, describe what you want to build, and reference Firecrawl in your prompt — the AI will wire up the integration automatically.