I just released xcrawl-scraper v1.0.1 on npm!
Key Features
- Scrape any webpage → clean Markdown, JSON, HTML, or text
- Search the web → structured results with snippets
- Crawl entire sites → built-in sitemap discovery
- AI Extraction — describe what you want in plain English, get JSON back
- Proxy control — choose exit region (US, JP, DE, GB) or sticky sessions
Quick Start
npm install xcrawl-scraper
const { XCrawlScraper } = require('xcrawl-scraper');
const xcrawl = new XCrawlScraper({ apiKey: 'YOUR_API_KEY' });
const result = await xcrawl.scrapeMarkdown('https://example.com');
console.log(result.data.markdown);
GitHub: https://github.com/yanxvdong123/xcrawl-scraper
npm: https://www.npmjs.com/package/xcrawl-scraper
Top comments (0)