VOOZH about

URL: https://apify.com/codepoetry/markdown-rag-chunker/api

⇱ RAG Document Chunker for PDF, Markdown & HTML API [DEPRECATED] Β· Apify


πŸ‘ Markdown RAG Chunker avatar

Markdown RAG Chunker

Deprecated

Pricing

$20.00/month + usage

Go to Apify Store

Markdown RAG Chunker

Deprecated

Chunk any document for RAG β€” PDF, HTML, Word, Excel, PPTX, Markdown and more. Header-aware splits with token counts and stable IDs.

Pricing

$20.00/month + usage

Rating

0.0

(0)

Developer

πŸ‘ CodePoetry

CodePoetry

Maintained by Community

Actor stats

0

Bookmarked

8

Total users

0

Monthly active users

2 months ago

Last modified

Share

You might also like

RAG-Ready Markdown Converter & Chunker

foxpink/apify-rag-markdown-chunker

Convert raw HTML/text into clean Markdown and split into ready-to-ingest chunks for RAG pipelines, Vector DBs, and LLM fine-tuning workflows.

πŸ‘ User avatar

Nguyα»…n Anh Duy

3

4.7

(3)

Rag Content Chunker

labrat011/rag-content-chunker

Turn raw text, Markdown, or Apify datasets into token-perfect RAG chunks with deterministic IDs, source metadata, and a billing-ready summaryβ€”ready for embeddings or vector DBs without extra glue code.

RAG Pipeline

labrat011/rag-pipeline

One-click RAG pipeline: chunks text, generates embeddings, and stores vectors in Pinecone or Qdrant. Provide your content and API keys -- the orchestrator handles the rest.

AI Context Scraper

wheat_tourist/ai-context-scraper

AI Context Scraper is a production-grade Apify Actor that gathers high-quality coding context from the Web, GitHub, and StackOverflow for AI agents and RAG systems. It uses NVIDIA Nemotron 3 Super to synthesize documents, code snippets, and patterns into actionable implementation guidance.

You can access the Markdown RAG Chunker programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

πŸ‘ Python

Python

πŸ‘ JavaScript

JavaScript

CLI

πŸ‘ OpenAPI

OpenAPI

HTTP

MCP

# Set API token
$API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
$cat> input.json <<'EOF'
<{
< "markdown_file": "https://en.wikipedia.org/wiki/Giant_panda"
<}
<EOF
# Run the Actor using an HTTP API
# See the full API reference at https://docs.apify.com/api/v2
$curl"https://api.apify.com/v2/acts/codepoetry~markdown-rag-chunker/runs?token=$API_TOKEN"\
<-X POST \
<-d @input.json \
<-H'Content-Type: application/json'

RAG Document Chunker for PDF, Markdown & HTML API

Below, you can find a list of relevant HTTP API endpoints for calling the Markdown RAG Chunker Actor. For this, you’ll need an Apify account. Replace <YOUR_API_TOKEN> in the URLs with your Apify API token, which you can find under Integrations in Apify Console. For details, see the API reference.

Run Actor

POST
https://api.apify.com/v2/acts/codepoetry~markdown-rag-chunker/runs?token=<YOUR_API_TOKEN>

Note: By adding the method=POST query parameter, this API endpoint can be called using a GET request and thus used in third-party webhooks. Please refer to our Run Actor API documentation.

Run Actor synchronously and get dataset items

POST
https://api.apify.com/v2/acts/codepoetry~markdown-rag-chunker/run-sync-get-dataset-items?token=<YOUR_API_TOKEN>

Note: This endpoint supports both POST and GET request methods. However, only the POST method allows you to pass input data. For more information, please refer to our Run Actor synchronously and get dataset items API documentation.

Get Actor

GET
https://api.apify.com/v2/acts/codepoetry~markdown-rag-chunker?token=<YOUR_API_TOKEN>

For more information, please refer to our Get Actor API documentation.

Actors can be used to scrape web pages, extract data, or automate browser tasks. Use the Markdown RAG Chunker API programmatically via the Apify API.

You can choose from:

Markdown RAG Chunker API in Python

Markdown RAG Chunker API in JavaScript

Markdown RAG Chunker API through CLI

Markdown RAG Chunker OpenAPI definition

You can start Markdown RAG Chunker with the Apify API by sending an HTTP POST request to the Run Actorendpoint. An Actor’s input and its content type can be passed as a payload of the POST request, and additional options can be specified using URL query parameters. The Markdown RAG Chunker is identified within the API by its ID, which is the creator’s username and the name of the Actor.

When the Markdown RAG Chunker run finishes you can list the data from its default dataset(storage) via the API or you can preview the data directly on Apify Console.