TokenAll

AI-Powered PDF Processing
in One API Call

Extract text, generate intelligent summaries, and convert PDF formats โ€” all through a simple REST API. Zero setup, pay as you go.

๐Ÿ“„

Extract Text

Pull clean, structured text from any PDF. Handles multi-column layouts, tables, and embedded fonts. Endpoint: POST /api/v1/extract

๐Ÿง 

AI Summarize

Get concise, accurate summaries powered by AI. Perfect for research papers, contracts, and reports. Endpoint: POST /api/v1/summarize

๐Ÿ”„

Convert Format

Convert PDF documents to plain text, Markdown, or HTML. Preserve formatting and structure. Endpoint: POST /api/v1/convert

โšก Quick Start

Extract Text โ€” curl
curl -X POST https://api.tokenall.net.cn/documind/api/v1/extract \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@document.pdf"
Summarize โ€” Python
import requests

response = requests.post(
    "https://api.tokenall.net.cn/documind/api/v1/summarize",
    headers={"X-API-Key": "YOUR_API_KEY"},
    files={"file": open("report.pdf", "rb")}
)
print(response.json()["data"]["summary"])
Convert โ€” curl
curl -X POST https://api.tokenall.net.cn/documind/api/v1/convert \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@document.pdf" \
  -F "target_format=md"
Subscribe & Get API Key โ†’

๐Ÿ’ฐ Simple Pricing

Free

$0/month
100 requests/month
  • All 3 endpoints
  • Max 50MB per file
  • Community support
  • No credit card required
Start Free โ†’

Ultra

$99/month
25,000 requests/month
  • All 3 endpoints
  • Max 50MB per file
  • Priority processing
  • Priority support
  • Usage dashboard
  • SLA guarantee
Get Ultra โ†’

FAQ

What file formats are supported?

DocuMind accepts PDF files up to 50MB. The convert endpoint supports output to plain text (.txt), Markdown (.md), and HTML.

How does the AI summarization work?

Our AI analyzes the full text of your PDF and generates a concise summary (typically 150-300 words) capturing the key points, arguments, and conclusions.

Is my data secure?

Yes. Files are processed in memory and never stored on our servers. All connections are encrypted via HTTPS.

Can I use it commercially?

Absolutely. All plans allow commercial use. Integrate DocuMind into your SaaS, mobile app, or enterprise workflow.

What's the response time?

Text extraction is typically under 5 seconds. AI summarization takes 10-30 seconds depending on document length. Pro and Ultra plans get priority processing.