Ask Your PDF

Ask any question about your PDF and get a cited answer.

💬

Drag and drop, or paste a link

PDF, Word, PowerPoint or text — drop, browse, or paste a link

🔒 Your files are processed privately and deleted automatically. How we handle your data

Stop scrolling through pages looking for one fact. Upload a PDF and just ask — PDF.chat finds the answer in the document and tells you, with a citation to the exact page.

Because every answer is grounded in your document and linked to its source, you never have to wonder whether the AI made it up.

How to ask your pdf

1
Upload a PDF
Any document — contract, report, paper, manual or form.
2
Ask anything
Facts, figures, dates, clauses, definitions — in plain language.
3
Verify the answer
Click the page citation to see the exact passage it came from.

Common uses

  • Find a specific clause or figure in a long contract
  • Ask a research paper for its method, results or limitations
  • Pull a date, total or name out of a report instantly
  • Get a plain-language explanation of a confusing section

Frequently asked questions

Every answer cites the page it came from — click the citation to jump to the exact passage and verify it yourself.

Specific questions ("what is the termination notice period?") and open ones ("what are the main risks?") both work.

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://pdf.chat/api/v1/ocr/ \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -F "file=@your-file.pdf" \
  -F "tool=ask-pdf"

Files of 5 pages or fewer return the result inline; otherwise poll the job, then download it as md:

curl -L "https://pdf.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://pdf.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 →
Rate this page
5.0/5 (0)

What could we improve? Your feedback helps us fix issues.