Chat with a Document
Talk to your scans, images and documents.
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 a Document lets you talk to anything you can scan or photograph, a printed page, a screenshot, a receipt, a letter, a form, or a multi-page PDF. ocr.chat extracts the text first, then lets you search and chat with it: ask what it says, pull out a specific detail, or get a quick summary. It is conversational OCR, the recognition and the question-answering happen in one place, so you go from an image to answers without copy-pasting text into a separate chatbot.
It is for the moments when you have a document in front of you and a question about it, not time to read the whole thing. Snap a photo of a notice and ask what the deadline is. Upload a scanned manual and ask how to do one specific step. Drop in a report and ask for the three key points. Because answers are grounded in the text that was actually extracted, and each one cites the page it came from, you get something you can trust and verify rather than a generic guess.
There is nothing to install and no signup to try the OCR. Upload an image or PDF, watch the text appear beside your original, and start asking. Recognition covers 100+ languages, your files are deleted automatically after processing, and nothing is ever sold or shared. 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 a document
Common uses
- Reading a photo of a notice, sign, or letter and asking what it actually requires of you.
- Pulling a single fact, a date, an amount, a reference number, out of a scanned document fast.
- Summarizing a multi-page report or handout into a few clear points before a meeting.
- Understanding forms, contracts, and official paperwork without reading every line.
- Studying from scanned notes and slides by asking questions instead of rereading them.
- Digitizing and querying receipts, statements, and records for quick lookups.
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.png" \
-F "tool=document"
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 →