Chat with PDF
Ask questions and get answers from any PDF.
Drag and drop, or paste a screenshot
Image, PDF, Word (DOCX) or text - drop, browse, paste, or use a URL
🔒 Your files are processed privately and deleted automatically.
Chat with PDF turns a static file into something you can actually talk to. Upload a PDF and ask questions in plain language, what does this clause mean, what is the total, when is it due, summarize section three, and get answers drawn straight from the document. Behind the scenes ocr.chat reads the whole file, including scanned and image-only pages that ordinary PDF tools cannot search, so you can interrogate any PDF rather than scrolling through it page by page.
It is built for anyone who works with long or dense PDFs: contracts, research papers, manuals, reports, statements, and policies. Instead of using Ctrl+F and hoping you guess the right keyword, you ask the question you actually have and the answer comes back with a citation to the exact page, so you can jump to the source and confirm it. Every reply is grounded in your document, the assistant is instructed to answer only from the text it extracted, and to tell you when something is not in the file rather than inventing it.
Getting started takes seconds and there is nothing to install. Drop in a PDF, wait for the text extraction, and start asking. Your original is shown beside the extracted text so you can see what was read, and your files are deleted automatically after processing, never sold or shared. Free recognition covers printed and digital PDFs; document chat runs on a free account, with paid plans from $5/mo for more pages, longer documents, and unlimited questions.
How to chat with pdf
Common uses
- Professionals reviewing contracts and agreements without reading every clause line by line.
- Students and researchers questioning long papers, textbooks, and reports to find what matters.
- Finance and ops teams pulling totals, dates, and terms out of statements and invoices.
- Support and legal staff searching policies and manuals for the exact answer to a question.
- Anyone digesting a dense government, medical, or insurance PDF they did not write.
- Job seekers and analysts summarizing filings, prospectuses, and whitepapers quickly.
Frequently asked questions
Use this via the API
Run this tool programmatically with a single POST. Authenticate with the API token from your account page.
curl -X POST https://ocr.chat/api/v1/ocr/ \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-F "file=@your-file.pdf" \
-F "tool=pdf"
Files of 5 pages or fewer return the result inline; otherwise poll the job, then download it as md:
curl -L "https://ocr.chat/api/v1/ocr/JOB_UUID/download/?format=md" \
-H "Authorization: Bearer YOUR_API_TOKEN" -o result.md
Then ask questions about the document, with answers cited to the page:
curl -X POST https://ocr.chat/api/v1/chat/JOB_UUID/ \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"message": "Summarize this document"}'
Read the API docs →