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 Node.js and TypeScript.
npm install beecrawl-sdk
import { BeeCrawlClient } from "beecrawl-sdk"; const client = new BeeCrawlClient({ apiKey: process.env.BEECRAWL_API_KEY, baseUrl: "https://api.beecrawl.dev", }); const page = await client.scrape("https://example.com", { formats: ["markdown", "links"], use_browser: "auto", }); const job = await client.crawl("https://example.com", { limit: 100, maxDepth: 2, }); const result = await client.pollCrawl(job.id, { intervalMs: 2000 });
http://127.0.0.1:8000
baseUrl