Firecrawl integration
Firecrawl automates web crawling and data extraction, enabling organizations to…
- 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.
-
FIRECRAWL_AGENT_CANCEL -
FIRECRAWL_BATCH_SCRAPE -
FIRECRAWL_BATCH_SCRAPE_CANCEL -
FIRECRAWL_BATCH_SCRAPE_GET -
FIRECRAWL_BATCH_SCRAPE_GET_ERRORS -
FIRECRAWL_CRAWL -
FIRECRAWL_CRAWL_CANCEL -
FIRECRAWL_CRAWL_DELETE -
FIRECRAWL_CRAWL_GET -
FIRECRAWL_CRAWL_GET_ERRORS -
FIRECRAWL_CRAWL_LIST_ACTIVE -
FIRECRAWL_CRAWL_PARAMS_PREVIEW
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.