This extractor lets you extract content from any website with a single or multiple URLs. Use selectors to choose specific sections like the body and exclude elements like headers or navigation. It also extracts images and links, providing data in JSON and DataTable formats for easy processing.
The Website Content Extractor is a web scraping tool designed to extract text, images, metadata, and links from specified websites using Playwright and Crawlee. It allows users to define target URLs, CSS selectors for content extraction, and exclusion rules.
header
, footer
, nav
) from the extraction.The input is a JSON configuration that specifies the settings for the extraction process.
urls
(required): Array of URLs — List of website URLs to extract content from.selectors
: Array of CSS selectors — Specifies which elements to extract content from.excludeSelectors
: Array of CSS selectors — Specifies elements to exclude from extraction (e.g., header
, nav
, footer
).extractImages
: Boolean — If set to true
, images from the page will be extracted.extractLinks
: Boolean — If set to true
, links from the page will be extracted.maxPages
: Integer — Limits the number of pages to crawl. Defaults to 1
if not set.1{ 2 "urls": [ 3 "https://example.com" 4 ], 5 "selectors": [ 6 "p", 7 "h1" 8 ], 9 "excludeSelectors": [ 10 "header", 11 "footer" 12 ], 13 "extractImages": true, 14 "extractLinks": true, 15 "maxPages": 3 16}
The output consists of extracted data for each URL, including:
1{ 2 "url": "https://example.com", 3 "crawl": { 4 "loadedUrl": "https://example.com", 5 "loadedTime": "2025-03-10T10:00:00Z", 6 "depth": 0, 7 "httpStatusCode": 200 8 }, 9 "text": "Extracted text content...", 10 "markdown": "**Extracted Text:**\n\nExtracted text content...", 11 "metadata": { 12 "canonicalUrl": "https://example.com/canonical", 13 "title": "Page Title", 14 "description": "Page description here", 15 "openGraph": [ 16 { "property": "og:title", "content": "Page Title" }, 17 { "property": "og:description", "content": "Page description here" } 18 ], 19 "jsonLd": [] 20 }, 21 "images": ["https://example.com/image1.jpg", "https://example.com/image2.jpg"], 22 "links": ["https://example.com/page1", "https://example.com/page2"] 23}
maxPages
to crawl more pages from the same domain, but be mindful of rate limits and page load times.Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.
No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!