Up And Running On Firecrawl

bash
curl -X POST 'https://api.firecrawl.dev/v2/scrape' \ -H 'Authorization: Bearer fc-77f3098a87b742ed9d584b07634ff01f' \ -H 'Content-Type: application/json' \ -d $'{ "url": "firecrawl.dev" }'
python
# pip install firecrawl-py
from firecrawl import Firecrawl 

app = Firecrawl(api_key="fc-77f3098a87b742ed9d584b07634ff01f") 
# Scrape a website: 
app.scrape('firecrawl.dev')

Add the Firecrawl Skill

bash
npx -y firecrawl-cli@latest init --all -k fc-77f3098a87b742ed9d584b07634ff01f