Website to Markdown โ Clean Content for AI & LLMs
Pricing
from $0.0015 / page converted
Website to Markdown โ Clean Content for AI & LLMs
Turn any web page into clean Markdown โ stripped of nav, ads and boilerplate โ ready to feed an LLM, RAG pipeline or n8n AI workflow. Article text, title and metadata from a URL.
Pricing
from $0.0015 / page converted
Rating
0.0
(0)
Developer
hiper soft
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Website to Markdown โ Clean Content for AI, LLMs & n8n
Turn any web page into clean Markdown โ stripped of navigation, ads and boilerplate โ ready to feed an LLM, a RAG pipeline, or an AI step in an n8n / Make workflow. Give it a URL and get back the article title, body as Markdown, and metadata.

What it does
- Extracts the main article content (readability) and converts it to Markdown.
- Returns title, byline, excerpt and word count.
- Optional: keep or strip links and images.
- Saves a
.mdfile per page and puts the Markdown right in the dataset (easy to pipe into an LLM node).
Use cases
- AI / RAG pipelines โ clean text to embed or summarize (perfect for n8n AI Agent / LangChain nodes).
- Content archiving โ save readable copies of articles.
- Summarize / repurpose โ feed clean Markdown to an LLM for summaries or rewrites.
Input
{ "urls": ["https://example.com/blog/post"], "includeLinks": true, "includeImages": true }
| Field | Type | Description |
|---|---|---|
urls | array | Pages to convert. |
html | string | Optional raw HTML instead of URLs. |
includeLinks | boolean | Keep hyperlinks. |
includeImages | boolean | Keep image references. |
Output

{ "url": "https://example.com/blog/post", "title": "My Post", "wordCount": 812, "markdown": "# My Post\n\n...", "resultUrl": "https://api.apify.com/v2/key-value-stores/.../records/page-0001.md" }
Output schema
| Field | Type | Description |
|---|---|---|
url | string (URL) | The source page. |
title | string | Article title. |
wordCount | integer | Words in the Markdown. |
resultUrl | string (URL) | Link to the Markdown file. |
FAQ
Great for LLMs? Yes โ the Markdown drops the page chrome so you feed the model only the real content (fewer tokens, better answers).
Can I use it in n8n? Yes โ run it from the Apify node and pass the markdown field to your AI/LLM step. It also works with Make, Zapier and other integrations and the Apify API.
Notes
Original clean-room implementation. Collects only public page content.