Skip to content

Instantly share code, notes, and snippets.

@davepoon
Created March 19, 2025 12:30
Show Gist options
  • Save davepoon/a84430e48db8aeb54775b7f40f852656 to your computer and use it in GitHub Desktop.
Save davepoon/a84430e48db8aeb54775b7f40f852656 to your computer and use it in GitHub Desktop.
a simple firecrawl example
from firecrawl import FireCrawl
fc = FireCrawl(api_key='your_api_key')
data = fc.scrape(url="https://example.com")
markdown_data = data.to_markdown()
print(markdown_data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment