
Webpage to Markdown
Pay $1.00 for 1,000 results

Webpage to Markdown
Pay $1.00 for 1,000 results
This actor cost-effectively converts websites into structured markdown optimized for AI processing. It extracts webpage content, formats it into clean markdown, and ensures compatibility with AI models.
Actor Metrics
12 monthly users
No reviews yet
1 bookmark
99% runs succeeded
Created in Feb 2025
Modified a month ago
Website to AI Markdown Converter
This Apify Actor takes a list of website URLs as input and converts their content into AI-friendly Markdown format. The processed data is then stored in an Apify dataset for easy access and retrieval.
Features
- Processes multiple URLs - Accepts a list of start URLs and fetches their content.
- AI-optimized Markdown output - Converts webpage content into structured Markdown.
- Stores results in Apify dataset - Data can be easily retrieved and used in other workflows.
- Handles errors gracefully - Logs errors and continues processing other URLs.
How It Works
- The Actor retrieves a list of start URLs from the input.
- It fetches the content of each URL.
- The extracted content is formatted into Markdown.
- The processed data is stored in an Apify dataset.
- Errors (if any) are logged for reference.
Input
The Actor requires a JSON input with a list of URLs:
1{ 2 "startUrls": [ 3 { "url": "https://example.com" }, 4 { "url": "https://another-site.com" } 5 ] 6}
Output
The Actor outputs structured Markdown content for each URL:
1{ 2 "url": "https://example.com", 3 "markdownn": " # Title\n\nContent of the webpage..." 4}
Usage
-
Run on Apify Console:
- Open the Actor in Apify Console.
- Provide the input JSON.
- Start the Actor and retrieve results from the dataset.
-
Run Locally:
- Install Apify CLI:
npm install -g apify-cli
- Pull the Actor:
apify pull <ActorId>
- Run it:
apify run
- Install Apify CLI: