Playground

Try FireScraper

Configure a scrape, copy the exact code for your stack, and run it live with your API key.

Configuration
import { FireScraper } from '@firescraper/sdk';

const client = new FireScraper('fsk_your_api_key');

const session = await client.scrape({
  name: 'Playground scrape',
  urls: ['https://example.com'],
  scraper: 'article',
});

// Wait for the crawl to finish
await client.waitForCompletion(session.id);

// Fetch clean, AI-ready output
const data = await client.getResults(session.id, 'markdown');
console.log(data);
Run it live

Need a key? Create one in API keys. Running a scrape uses credits.