Website Intelligence Crawler avatar

Website Intelligence Crawler

Pricing

from $0.60 / 1,000 page crawleds

Go to Apify Store
Website Intelligence Crawler

Website Intelligence Crawler

Crawl a public website and get every page as clean text. You also get Markdown, page metadata, same-site links and chunks ready for embedding. It follows robots.txt. No API key, no LLM call, no browser. Built for the boring part of a RAG pipeline. $0.60 per 1,000 pages.

Pricing

from $0.60 / 1,000 page crawleds

Rating

0.0

(0)

Developer

Dami's Studio

Dami's Studio

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Website Intelligence Crawler: a public site as clean text, Markdown and chunks for embedding

Point it at a URL and it crawls the same-site pages and hands back each one as readable text, as Markdown, and as chunks already sized for an embedding model. Title, description, language, word count, the links it found and the status code ride along on every row.

No API key, no model call, nothing to authorise. The chunking and the relevance ranking are both plain arithmetic, so the same input gives the same output every time.

The one limit to understand first: there is no browser here. It reads the HTML the server sends. A page that builds its content in JavaScript after loading comes back with very little text, and no setting changes that. For ordinary documentation, blogs, marketing sites and knowledge bases, which is what most crawls are, the HTML is the content.

InputPublic HTTP or HTTPS URLs to start from
OutputOne row per page, with text, Markdown and chunks
Ceiling100 pages per starting URL, 5 levels of same-site links
Account neededNone
Price$0.60 per 1,000 pages, which is $0.0006 each, flat on every plan

πŸ•ΈοΈ What Website Intelligence Crawler does

From each URL you give it, it follows same-site links down to the depth you set, and writes a record per page. It stays on the site it started on, so an outbound link to somebody else's domain is recorded in links and not followed.

The text is the readable part of the page, with navigation, scripts and boilerplate stripped. The Markdown keeps the heading structure, paragraphs and lists, which is the version you want if the pages are going into a document store.

Chunks are cut to the size you ask for with a little overlap so a sentence is not sliced in half. Each one carries its character count and an estimated token count, so you can budget an embedding run before you start it.

Give it a query and every chunk gets a relevanceScore against those words. It is deterministic term matching, not a model, and it is there to let you keep the 20 chunks that matter instead of all 400.

robots.txt is honoured by default, including crawl delay.

πŸ“₯ What you give it

{
"startUrls": [{"url": "https://docs.example.com/"}],
"maxPages": 50,
"maxDepth": 2,
"outputFormat": "both",
"chunkSizeChars": 1200,
"query": "pricing plans billing"
}
FieldDefaultWhat it is
startUrlsnoneThe pages to start from. Normalised and deduplicated.
urlsnoneMore starting URLs, as plain strings, if that shape suits you better.
maxPages10Records per starting URL, 1 to 100. Failed pages count too.
maxDepth1Same-site link depth, 1 to 5. Setting it to 0 behaves the same as 1, so use maxPages: 1 when you want the seed page alone.
maxConcurrency3Requests in flight per site, 1 to 10. Leave it low on small servers.
useRobotsTxttrueHonour Disallow rules and crawl delay. It does not interpret Allow exceptions, so a site that relies on those may be crawled less than it permits.
querynoneWords to score chunks against. No model, no key.
chunkSizeChars1200Target characters per chunk, 300 to 5,000.
chunkOverlapChars120Characters repeated between neighbouring chunks, up to 800. Zero behaves as 120.
outputFormatbothjson keeps the text, markdown keeps the Markdown, both keeps each.
requestTimeoutSecs15Per request, 3 to 60.
maxResponseSizeKb2048Biggest page body accepted, 128 to 8,192 KB.
fallbackToProxyfalseRetry a refused page once by another route. Direct is always tried first.
proxyConfigurationnoneYour own servers, for that retry, if you have them.

Leave the URLs empty and you get one sample row showing the shape, with nothing fetched and nothing charged.

πŸ“€ What you get back

A real row from a real run:

{
"ok": true,
"requestedUrl": "https://example.com/",
"url": "https://example.com/",
"seedUrl": "https://example.com/",
"siteKey": "example.com",
"depth": 0,
"status": 200,
"title": "Example Domain",
"description": null,
"language": "en",
"canonicalUrl": "https://example.com/",
"text": "Example DomainThis domain is for use in documentation examples without needing permission. Avoid use in operations.Learn more",
"markdown": "# Example Domain\n\nThis domain is for use in documentation examples without needing permission. Avoid use in operations.\n\nLearn more",
"links": [],
"wordCount": 17,
"contentType": "text/html",
"chunks": [
{
"chunkIndex": 0,
"text": "Example DomainThis domain is for use in documentation examples without needing permission. Avoid use in operations.Learn more",
"charCount": 125,
"estimatedTokens": 32,
"relevanceScore": null
}
],
"query": null,
"outputFormat": "both",
"fetchedAt": "2026-09-06T17:08:09.247Z"
}
FieldWhat it is
requestedUrl, url, canonicalUrlWhat was asked for, what answered after redirects, and what the page says its own address is.
seedUrl, siteKey, depthWhich starting URL this page came from, the site it belongs to, and how many links away it was.
textThe readable content, boilerplate removed. Absent when outputFormat is markdown.
markdownHeadings, paragraphs and lists. Absent when outputFormat is json. A page built entirely of tables falls back to the plain text.
linksSame-site links found on the page, with their anchor text, up to 250.
chunkschunkIndex, text, charCount, estimatedTokens, and relevanceScore when you gave a query.
wordCount, language, statusUseful for filtering out thin pages and redirect landing pages before you embed anything.
contentTypeAlways reads text/html, because HTML is the only thing kept.

🧾 Reading the output

Page rows carry ok: true. Failures carry diagnostics: true with an errorCode, and are never charged.

RowHow to spot itCharged
A pageok is trueyes
The sample row_sample is trueno
A failed pagediagnostics is true, and errorCode says whyno
CodeWhat it means
BAD_INPUTNot a public HTTP or HTTPS address. Credentials in the URL and other schemes land here.
ROBOTS_DISALLOWEDThe site's own robots.txt asks crawlers not to read that path.
UNSUPPORTED_CONTENTA PDF, an image, JSON, anything that is not an HTML page.
HTTP_ERRORThe server answered with an error status.
NETWORKThe server could not be reached, or answered badly.
TIMEOUTSlower than requestTimeoutSecs.
RESPONSE_TOO_LARGEBigger than maxResponseSizeKb.
SSRF_BLOCKEDThe address points somewhere private, so it was refused.

One quirk of the table view: a failed row has no url, and the address it tried sits in requestedUrl, which the view does not show. Open the row or export the dataset to see which page it was.

▢️ How to run it

  1. Open Website Intelligence Crawler and click Try for free.
  2. Put your address into Start URLs.
  3. Set Maximum pages and Maximum link depth. Ten pages at depth 1 is a good look before you commit to a whole site.
  4. If the crawl is feeding a search or a RAG index, set Chunk size to whatever your embedding model likes.
  5. Click Start, then download the dataset as JSON, CSV or Excel, or read it from the API.

πŸ’° How much does it cost?

$0.60 per 1,000 pages, which is $0.0006 each. Flat on every Apify plan, no volume tiers.

You pay per page that came back. The sample row is not charged, and neither is a page that failed, was disallowed by robots.txt, was too large, or turned out to be a PDF. Those still arrive as rows so you know they happened.

Fifty pages is three cents. A hundred-page site crawled weekly is a quarter a month.

πŸ’‘ What people use it for

  • The dull half of a RAG pipeline: crawl the docs, get chunks with token counts, embed them.
  • Keeping a support bot's knowledge current by re-crawling the help centre on a schedule.
  • Content audits. wordCount, title, description and status across every page, in one export.
  • Pulling a competitor's whole marketing site as Markdown to read properly.
  • Finding the pages that actually mention a term, using query and relevanceScore.

🚧 What it does not do

  • No browser. JavaScript-rendered content is not there to read.
  • Same site only. Links to other domains are recorded, not followed.
  • HTML only. PDFs, Word files and images come back as unsupported rather than as text.
  • Nothing behind a login. No cookies, no sign-in, no interactive challenges.
  • 100 pages per starting URL. For a bigger site, give it several starting URLs, one per section.
  • No screenshots. The screenshot generator linked below does that.
  • No summarising or tagging. No model runs here, which is the point: nothing is invented and nothing is rephrased.
  • Depth 0 is not honoured. It behaves as depth 1.

🧭 Which site tool do you need?

If you wantUse
A site as text, Markdown and chunksThis one
Pictures of the pages insteadWebsite Screenshot Generator
Repositories and developer profilesGitHub Scraper
Questions and answers from Stack OverflowStack Overflow Scraper

❓ Questions people ask

Does it run JavaScript? No. It reads the HTML the server sends, which is the whole content on most documentation and marketing sites.

Will it hammer my site? It keeps to robots.txt, including crawl delay, and you can drop maxConcurrency to 1.

What chunk size should I use? Whatever your embedding model is happiest with. 1,200 characters with 120 of overlap is a reasonable default, and estimatedTokens on each chunk tells you where you landed.

Can I crawl one page only? Set maxPages to 1. Depth 0 does not do it.

Do I get both text and Markdown? With outputFormat: both, yes, on the same row. Pick one if the rows are getting large.

Is crawling a public site legal? It reads public pages and honours robots.txt. Site terms still apply to what you do with the content afterwards. Apify's write-up on the legality of web scraping is a good starting point, and we are not lawyers.

πŸ†˜ If something breaks

Open the Issues tab on the actor page. Send the starting URL and the run ID. If a diagnostic row landed, its errorCode and requestedUrl usually name the reason already.