Extract text, generate intelligent summaries, and convert PDF formats โ all through a simple REST API. Zero setup, pay as you go.
Pull clean, structured text from any PDF. Handles multi-column layouts, tables, and embedded fonts. Endpoint: POST /api/v1/extract
Get concise, accurate summaries powered by AI. Perfect for research papers, contracts, and reports. Endpoint: POST /api/v1/summarize
Convert PDF documents to plain text, Markdown, or HTML. Preserve formatting and structure. Endpoint: POST /api/v1/convert
curl -X POST https://api.tokenall.net.cn/documind/api/v1/extract \ -H "X-API-Key: YOUR_API_KEY" \ -F "file=@document.pdf"
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"])
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"
DocuMind accepts PDF files up to 50MB. The convert endpoint supports output to plain text (.txt), Markdown (.md), and HTML.
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.
Yes. Files are processed in memory and never stored on our servers. All connections are encrypted via HTTPS.
Absolutely. All plans allow commercial use. Integrate DocuMind into your SaaS, mobile app, or enterprise workflow.
Text extraction is typically under 5 seconds. AI summarization takes 10-30 seconds depending on document length. Pro and Ultra plans get priority processing.