Install
openclaw skills install smart-scraperAI-powered web scraper with intelligent structure recognition. Extracts lists, articles, and tables from any website with automatic type detection.
openclaw skills install smart-scraperIntelligent web scraping that understands page structure.
# Extract product listings
smart-scraper --url "https://example.com/products" --type list
# Extract article content
smart-scraper --url "https://example.com/article" --type article --format markdown
# Extract table data
smart-scraper --url "https://example.com/data" --type table --format csv
| Option | Description | Default |
|---|---|---|
--url, -u | Target URL (required) | - |
--type, -t | Extraction type: list, article, table, auto | auto |
--format, -f | Output format: json, csv, markdown | json |
--max, -m | Maximum items to extract | 100 |
--scroll | Enable auto-scroll for lazy-loaded content | false |
smart-scraper -u https://news.ycombinator.com -t list -m 10
smart-scraper -u https://blog.example.com/post -t article -f markdown > article.md
smart-scraper -u https://example.com/prices -t table -f csv > prices.csv