CHUNKER.CC is an AI-native document chunking API with micropayments on Solana. Upload documents and receive semantically chunked text optimized for RAG pipelines and LLM context windows.
https://api.adepti.cc
https://chunker.cc
No authentication required. Simply POST your file to the endpoint.
Requires USDC payment on Solana. Payment flow:
X-PAYMENT headerX-PAYMENT: <solana-transaction-signature>Returns API info, pricing, and configuration.
curl https://api.adepti.cc/
Health check endpoint for monitoring.
curl https://api.adepti.cc/health
// Response
{ "status": "healthy", "network": "solana-mainnet" }
Basic recursive character chunking. Limited to 100 pages/day.
| Parameter | Type | Description |
|---|---|---|
fileREQUIRED |
File | Document to chunk (.txt, .pdf) |
curl -X POST https://api.adepti.cc/chunk/demo \
-F "file=@document.txt"
Sentence-aware semantic chunking with intelligent boundary detection.
| Parameter | Type | Description |
|---|---|---|
fileREQUIRED |
File | Document to chunk (.txt, .pdf) |
X-PAYMENTREQUIRED |
Header | Solana transaction signature |
curl -X POST https://api.adepti.cc/chunk/standard \
-H "X-PAYMENT: 5K4t...signature..." \
-F "file=@document.txt"
Contextual chunking with entity extraction and metadata enrichment. Best for complex reasoning tasks.
| Parameter | Type | Description |
|---|---|---|
fileREQUIRED |
File | Document to chunk (.txt, .pdf) |
X-PAYMENTREQUIRED |
Header | Solana transaction signature |
document_summaryOPTIONAL |
Form field | Pre-computed summary for context injection |
curl -X POST https://api.adepti.cc/chunk/professional \
-H "X-PAYMENT: 5K4t...signature..." \
-F "file=@document.pdf" \
-F "document_summary=This document covers..."
All chunking endpoints return the same response structure:
{
"success": true,
"tier": "standard",
"total_chunks": 12,
"metadata": {
"filename": "document.txt",
"content_type": "text/plain",
"size_bytes": 15420,
"estimated_pages": 3
},
"chunks": [
{
"text": "First chunk content...",
"metadata": {
"chunk_index": 0,
"char_count": 1024
}
},
{
"text": "Second chunk content...",
"metadata": {
"chunk_index": 1,
"char_count": 987
}
}
],
"payment": {
"amount": 1000,
"asset": "USDC",
"network": "solana-mainnet"
}
}
| Code | Status | Description |
|---|---|---|
200 |
Success | Request processed successfully |
400 |
Bad Request | Invalid file format, encoding, or corrupted PDF |
402 |
Payment Required | Missing or invalid payment for paid tier |
500 |
Server Error | Internal processing error |
{
"error": "Payment Required",
"paymentRequirements": {
"x402Version": 1,
"scheme": "exact",
"network": "solana-mainnet",
"maxAmountRequired": "1000",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"payTo": "8hTm...dWT",
"description": "Standard tier sentence-aware chunking"
}
}