Web to Markdown
Pricing
$5.00 / 1,000 page convertie en markdowns
Web to Markdown
Extracts the main content of a web page (or crawls an entire site) and converts it to clean Markdown, stripped of noise (nav, ads, cookies, footer) — ready to feed an LLM prompt or a RAG pipeline.
Pricing
$5.00 / 1,000 page convertie en markdowns
Rating
0.0
(0)
Developer
Oussema Toumi
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
12 days ago
Last modified
Categories
Share
Extracts the main content of a web page (or crawls an entire site through its internal links) and converts it to clean Markdown — without nav, footer, ads, cookie banners or popups. Ideal for feeding an LLM prompt or a RAG pipeline without polluting the context with noise.
Input
| Field | Type | Description |
|---|---|---|
startUrls | array | URL(s) to start from |
crawlMode | string | singlePage or sameDomain (follows internal links) |
maxPages | int | Max pages when sameDomain (default: 20) |
removeSelectors | array | Additional CSS selectors to exclude |
includeLinks | bool | Keep hyperlinks (default: true) |
includeImages | bool | Keep image references (default: false) |
Output (dataset)
Each record contains: url, title, markdown, charCount.
Pricing (pay-per-event)
page-converted— $0.005 — per page successfully converted- Failed or empty pages are never charged.
Example: a 20-page blog crawl ≈ 20 × $0.005 = $0.10 charged to the user.
Technical notes
- No GPU required: HTML extraction + pure parsing (Cheerio + Turndown).
- Heuristic detection of the main container (
article,main,.post-content, etc.) with fallback to<body>. sameDomainmode is deliberately limited to the starting domain(s) to avoid an uncontrolled crawl (and uncontrolled billing) on third-party sites.