OpenAdapterOpenAdapter
Tools

Doc Parse

Extract text from documents — PDF, DOCX, PPTX, XLSX, HTML. Upload a file and get clean text back.

Base URL & authentication

Base URL: https://api.openadapter.in

All requests need an Authorization: Bearer sk-cv-... header. Generate or copy your API key from the Dashboard → API Keys page.

Endpoint: POST /v1/edge/docparse Cost per call: 0.15 credits Minimum plan: free

Extract text from documents — PDF, DOCX, PPTX, XLSX, HTML. Upload a file and get clean text back.

Request

curl https://api.openadapter.in/v1/edge/docparse \
  -H "Authorization: Bearer $OPENADAPTER_API_KEY" \
  -F "file=@document.pdf"
import requests
resp = requests.post(
    "https://api.openadapter.in/v1/edge/docparse",
    headers={"Authorization": f"Bearer {API_KEY}"},
    files={"file": open("document.pdf", "rb")},
)
print(resp.json())
import fs from 'fs';
const form = new FormData();
form.append('file', new Blob([fs.readFileSync('document.pdf')]));
const res = await fetch('https://api.openadapter.in/v1/edge/docparse', {
  method: 'POST',
  headers: { Authorization: `Bearer ${process.env.OPENADAPTER_API_KEY}` },
  body: form,
});
console.log(await res.json());

Pricing

Each call costs 0.15 credits. Available on the free plan and above.

On this page