Markdown Extraction Support

CaptureKit now supports extracting Markdown content from web pages, making it easier to process and use textual content in your applications.
We've just released a new feature in CaptureKit based on user feedback: Markdown extraction. This update enhances CaptureKit's content extraction capabilities, allowing you to retrieve clean, structured text from web pages.
馃摑 Markdown Extraction (in /content API)
You can now extract the Markdown representation of web pages using the /content endpoint. This makes it easier to work with the textual content of web pages in a format that's both human-readable and machine-processable.
Example Request
GET https://api.capturekit.dev/v1/content?x_api_key=<your-access-key>&url=https://capturekit.dev&include_markdown=true
Example Response
{
"success": true,
"data": {
"metadata": { ... },
"links": { ... },
"html": "<html><body><h1>Hello, world!</h1></body></html>",
"markdown": "# Hello, world!"
}
}
Parameters
- url (string, required): URL of the webpage
- x_api_key (string, required): Your API key
- include_markdown (boolean, optional): Set to true to include Markdown data (defaults to false)
Why Markdown?
Markdown provides several advantages over raw HTML:
- Readability: Markdown is cleaner and easier to read than HTML
- Simplicity: It removes unnecessary styling and formatting
- Portability: Easy to use in various applications and platforms
- Text Processing: Ideal for content analysis, summarization, and AI processing
Use Cases
- Content Management: Import web content directly into your CMS
- AI Processing: Feed web content to LLMs and other AI systems in a clean format
- Documentation: Extract documentation from websites for offline use
- Knowledge Bases: Build internal knowledge repositories from web content
Final Notes
This feature was developed in direct response to user feedback. We're committed to building CaptureKit to meet your real-world needs.
Have ideas for more features? Let us know! We're actively developing CaptureKit based on user input.
Thanks for being part of the journey!
Ready to get started with CaptureKit?
Start capturing screenshots and extracting content today. Get started for free.
Get StartedYou Might Also Like
How to Hide Cookie Banners with Puppeteer
Learn effective techniques to automatically hide and handle cookie consent banners when taking screenshots with Puppeteer
5 Best Browshot Alternatives For Scaling The Screenshot
Explore 5 top Browshot alternatives to scale website screenshots to capture faster, bulk automation, APIs, and reliable rendering for teams and SaaS builders.
How To Take Markdown of All The Pages in a Domain (Automation)
Learn how to automate the process of extracting and converting every page in a domain into clean Markdown all with a single workflow.