firecrawl-agent

firecrawl-agent

Perform autonomous deep web research using Firecrawl's agent. Searches, navigates, and extracts data from websites without needing URLs. Use when users need web research, company information, competitive analysis, or structured data extraction from the web.

0étoiles
0forks
Mis à jour 1/18/2026
SKILL.md
readonlyread-only
name
firecrawl-agent
description

Perform autonomous deep web research using Firecrawl's agent. Searches, navigates, and extracts data from websites without needing URLs. Use when users need web research, company information, competitive analysis, or structured data extraction from the web.

version
"1.0.0"

Firecrawl Agent Skill

This skill enables autonomous deep web research using Firecrawl's /agent endpoint. The agent can search, navigate, and extract structured data from websites without requiring URLs upfront.

When to Use This Skill

Use this skill when you need to:

  • Research companies - Find founders, funding, employee counts, tech stacks
  • Gather competitive intelligence - Compare products, pricing, features
  • Extract structured data - Get specific information in a defined schema
  • Answer questions requiring web research - When information isn't in your knowledge base

Quick Start

Run a simple research query:

cd firecrawl-agent/scripts
python firecrawl_agent.py "Find the founders and founding year of Anthropic"

Prerequisites

  1. Install dependencies:

    pip install -r scripts/requirements.txt
    
  2. Set API key:

    export FIRECRAWL_API_KEY=your_api_key_here
    

    Get your API key at: https://www.firecrawl.dev/

Usage

Basic Research (No Schema)

python scripts/firecrawl_agent.py "What are the main features of Notion?"

Research with Structured Output

For predictable, structured responses, provide a JSON schema:

python scripts/firecrawl_agent.py \
  "Find information about Stripe" \
  --schema '{"company_name": "string", "founded_year": "number", "founders": ["string"], "headquarters": "string"}'

Command Line Options

Option Description Default
prompt Your research query (required) -
--schema JSON schema for structured output None
--model Model to use: spark-1-mini or spark-1-pro spark-1-mini
--urls Comma-separated starting URLs None
--max-credits Maximum credits to spend 50

Model Selection

  • spark-1-mini (default): Faster, cheaper, good for straightforward queries
  • spark-1-pro: More capable, better for complex research requiring deeper navigation
# Use pro model for complex research
python scripts/firecrawl_agent.py \
  "Compare the pricing tiers of Notion, Coda, and Obsidian" \
  --model spark-1-pro

Providing Starting URLs

If you know relevant URLs, provide them to focus the search:

python scripts/firecrawl_agent.py \
  "Extract the pricing information" \
  --urls "https://stripe.com/pricing,https://stripe.com/enterprise"

Common Use Cases

Company Research

python scripts/firecrawl_agent.py \
  "Research Anthropic: founders, funding rounds, key products, and employee count" \
  --schema '{"name": "string", "founders": ["string"], "funding_total": "string", "products": ["string"], "employee_count": "string"}'

Product Comparison

python scripts/firecrawl_agent.py \
  "Compare Vercel and Netlify deployment platforms" \
  --model spark-1-pro

Contact Information

python scripts/firecrawl_agent.py \
  "Find contact information for Acme Corp" \
  --schema '{"email": "string", "phone": "string", "address": "string", "social_links": ["string"]}'

Output Format

The script outputs JSON with the following structure:

{
  "success": true,
  "status": "completed",
  "data": {
    // Your extracted data here
  },
  "sources": [
    "https://example.com/page1",
    "https://example.com/page2"
  ],
  "credits_used": 12
}

Error Handling

Common errors and solutions:

Error Cause Solution
FIRECRAWL_API_KEY not set Missing API key Export the environment variable
Rate limit exceeded Too many requests Wait and retry, or upgrade plan
Credit limit reached maxCredits exceeded Increase --max-credits or simplify query
Invalid schema Malformed JSON schema Validate your JSON syntax

Cost Management

  • The agent uses credits based on complexity and pages visited
  • Free tier: 5 runs per day
  • Set --max-credits to cap spending:
    python scripts/firecrawl_agent.py "Research topic" --max-credits 25
    

Reference Documentation

  • See references/REFERENCE.md for complete API parameter documentation
  • See references/SCHEMAS.md for common schema patterns
  • See assets/example_schemas/ for ready-to-use Pydantic models

Notes

  • Firecrawl agent is in "research preview" - pricing is dynamic
  • Results are available for 24 hours after completion
  • Complex queries may take 30-60 seconds to complete

You Might Also Like

Related Skills

summarize

summarize

179Kresearch

Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).

openclaw avataropenclaw
Obtenir
prompt-lookup

prompt-lookup

143Kresearch

Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.

skill-lookup

skill-lookup

143Kresearch

Activates when the user asks about Agent Skills, wants to find reusable AI capabilities, needs to install skills, or mentions skills for Claude. Use for discovering, retrieving, and installing skills.

sherpa-onnx-tts

sherpa-onnx-tts

88Kresearch

Local text-to-speech via sherpa-onnx (offline, no cloud)

moltbot avatarmoltbot
Obtenir
openai-whisper

openai-whisper

87Kresearch

Local speech-to-text with the Whisper CLI (no API key).

moltbot avatarmoltbot
Obtenir
seo-review

seo-review

66Kresearch

Perform a focused SEO audit on JavaScript concept pages to maximize search visibility, featured snippet optimization, and ranking potential

leonardomso avatarleonardomso
Obtenir