Website to Markdown โ€” Clean Content for AI & LLMs avatar

Website to Markdown โ€” Clean Content for AI & LLMs

Pricing

from $0.0015 / page converted

Go to Apify Store
Website to Markdown โ€” Clean Content for AI & LLMs

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

hiper soft

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

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.

Website to Markdown input โ€” configure the options in the Apify Console

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 .md file 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 }
FieldTypeDescription
urlsarrayPages to convert.
htmlstringOptional raw HTML instead of URLs.
includeLinksbooleanKeep hyperlinks.
includeImagesbooleanKeep image references.

Output

Website to Markdown output โ€” the results as a clean dataset

{ "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

FieldTypeDescription
urlstring (URL)The source page.
titlestringArticle title.
wordCountintegerWords in the Markdown.
resultUrlstring (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.