Firecrawl Crawl

firecrawl/crawl

Crawl an entire website starting from a URL. Discovers and scrapes all reachable pages, returning clean markdown for each. Runs asynchronously — submit the job, then poll for results.

Base price
N/A
Execution
async
Model type
api
Input fields
3

Try the model

Playground

Open playground
Input
The starting URL to crawl.
Maximum number of pages to crawl. Range: 1 to 10000.
Options passed to the scraper for each page.
OutputReady

Your output will appear here

Complete the inputs, then click Run.

Specifications

Pricing

Pricing
N/A

Context & modalities

Supported modes
async
Input
Schema-defined
Output
api

Capabilities

Chat
Not supported
Vision
Not supported
Reasoning
Not supported
Structured output
Not supported
Function calling
Not supported
Audio input
Not supported

Access

Provider
Firecrawl
Model ID
firecrawl/crawl
Execution
async
API
Unified Run API
Endpoint
/v1/run

Start building

Send your first request

OpenAI-compatible endpoint with unified authentication and usage tracking.

Production API
Endpoint
https://api.sandbase.ai/v1/run
Model ID
firecrawl/crawl
# Preserve Unicode and shell metacharacters in the request body.
result=$(printf '%s' 'ewogICJtb2RlbCI6ICJmaXJlY3Jhd2wvY3Jhd2wiCn0=' \
  | base64 --decode \
  | curl --fail-with-body --silent \
      -X POST "https://api.sandbase.ai/v1/run" \
      -H "Authorization: Bearer $SANDBASE_API_KEY" \
      -H "Content-Type: application/json" \
      --data-binary @-)
run_id=$(printf '%s' "$result" | jq -r .id)
for attempt in $(seq 1 120); do
  status=$(printf '%s' "$result" | jq -r .status)
  case "$status" in completed|failed|timeout) break ;; esac
  sleep 2
  result=$(curl --fail-with-body --silent \
    -H "Authorization: Bearer $SANDBASE_API_KEY" \
    "https://api.sandbase.ai/v1/run/$run_id")
done
status=$(printf '%s' "$result" | jq -r .status)
[ "$status" = completed ] || { echo "Generation ended: $status" >&2; exit 1; }
printf '%s\n' "$result"

Choose your model

Compare models

All language models
ModelContextInput / 1MOutput / 1MReleased
Firecrawl CrawlThis model
Firecrawl
———Jan 1, 2024
Firecrawl———Jan 1, 2024
Firecrawl———Jan 1, 2024
Firecrawl———Jan 1, 2024
Firecrawl———Jan 1, 2024