Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use BeeCrawl from Python.
uv add beecrawl-py
from beecrawl_sdk import BeeCrawlClient client = BeeCrawlClient( api_key="your-key", base_url="https://api.beecrawl.dev", ) page = client.scrape( "https://example.com", formats=["markdown", "links"], use_browser="auto", ) job = client.crawl("https://example.com", limit=100, maxDepth=2) result = client.poll_crawl(job["id"], interval=2)
AsyncBeeCrawlClient