AI Markdown Maker avatar
AI Markdown Maker

Pricing

from $4.60 / 1,000 results

Go to Apify Store
AI Markdown Maker

AI Markdown Maker

Developed by

One Scales

One Scales

Maintained by Community

This actor allows you to convert any list of web pages into a clean, structured markdown format for AI. It uses the powerful and free [Jina AI Reader API](https://jina.ai/reader/) to intelligently parse web content, removing ads, navigation, and other clutter.

5.0 (2)

Pricing

from $4.60 / 1,000 results

0

3

3

Last modified

8 hours ago

Bulk AI Markdown Maker

This actor allows you to convert any list of web pages into a clean, structured markdown format for AI. It uses the powerful and free Jina AI Reader API to intelligently parse web content, removing ads, navigation, and other clutter. The resulting markdown is perfect for feeding into Large Language Models (LLMs), archiving content, or any other AI-driven application.

Apify Free Plan Limit: Please note that users on the Apify Free plan are limited to a maximum of 100 results per actor run. If you need to process more URLs, please consider upgrading to a paid plan.

Note: This actor uses the free Jina AI Reader, which has a rate limit. The actor is configured to run sequentially with a 3-second delay between requests to respect this limit. If you are running hundreds or thousands of URLs, please be patient.


How to Use

Using the Apify Console (UI)

  1. Input URLs: In the URLs to Convert to Markdown field, add one or more web page URLs you want to process. You can add them one by one, use the "Bulk edit" option to paste a list, or upload a text file.
  2. Set Max Items (Optional): In the Maximum Number of Pages to Process field, you can specify a limit. If you leave this empty, it will process all the URLs you provided (subject to the free plan limit mentioned above).
  3. Proxy Configuration: It is highly recommended to use a proxy to prevent your requests from being blocked. The default Apify Proxy settings are suitable for most use cases.
  4. Run the Actor: Click the "Start" button and wait for the run to finish.
  5. Get Results: Once the actor has finished, go to the Output or Dataset tab. You can view the results and download them in formats like JSON, CSV, or Excel.

Need Help

Have Questions or Need Additional Features?

We're here to support you! Whether you need help with setup, have questions about interpreting results, or want to request additional features for the Bulk Image Downloader, we've got you covered.

Contact Us

Just fill out the form at https://docs.google.com/forms/d/e/1FAIpQLSfsKyzZ3nRED7mML47I4LAfNh_mBwkuFMp1FgYYJ4AkDRgaRw/viewform?usp=dialog, and we'll try our best to help as quickly as possible.

Using the Apify API

You can also run the actor programmatically using the Apify API.

1. Start the Actor

Use the Run actor endpoint. Here is a cURL example:

curl -X POST \
"https://api.apify.com/v2/acts/~YOUR_ACTOR_ID/runs?token=<YOUR_API_TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"proxyConfiguration": {
"useApifyProxy": true
},
"startUrls": [
{
"url": "https://ask.com",
"method": "GET"
},
{
"url": "https://emasla.com/products/meisner-technique",
"method": "GET"
},
{
"url": "https://emasla.com/pages/our-mission",
"method": "GET"
},
{
"url": "https://emasla.com/",
"method": "GET"
}
]
}'