Introduction to web scraping capabilities
{ "url": "https://example.com", "selectors": { "title": "h1", "content": ".main-content", "links": "a[href]" } }
{ "url": "https://example.com", "config": { "wait_for": ".dynamic-content", "timeout": 5000, "proxy": { "enabled": true, "rotation": true }, "headers": { "User-Agent": "Custom Bot 1.0", "Accept-Language": "en-US" } } }
{ "rate_limit": { "requests_per_second": 2, "concurrent_requests": 5, "delay_between_requests": 500 } }
{ "validation": { "required_fields": ["title", "price"], "format": { "price": "number", "date": "ISO8601" }, "constraints": { "title": { "min_length": 5, "max_length": 200 } } } }