Translate a Document
OCR and translate a scanned document in one step.
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.
Translate a Document reads the text in an image or PDF and translates it into the language you choose, all in a single upload. This is different from ordinary OCR, where foreign words are simply transcribed in their original language. Here the premium AI engine recognizes the text and then translates it, so a scanned document in one language comes back as readable text in another, ready to copy or download.
It is built for travelers, researchers, and legal and business professionals who need to understand documents that are not in their language. Whether it is a contract, an academic paper, a government form, a menu, or a letter, you upload the file, pick a target language, and get a translated version without juggling a separate OCR tool and translation service. Recognition covers 100+ source languages and translation supports the major world languages.
ocr.chat shows the original next to the result with low-confidence areas flagged, so you can see exactly what was read before it was translated. There is no signup to try, files are deleted automatically, and nothing is ever sold or shared. Translation runs on the premium AI tier; free recognition covers printed documents, and paid plans from $5/mo add more pages, batch processing, and API access.
How to translate a document
Common uses
- Travelers translating foreign menus, signs, forms, and letters from a photo on the spot.
- Researchers reading academic papers and sources published in other languages.
- Legal teams reviewing contracts and filings that arrive in a language they do not read.
- Businesses translating supplier documents, manuals, and correspondence from overseas partners.
- Immigrants and applicants understanding government and immigration paperwork in another language.
- Students working through study materials and textbooks written in a foreign language.
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=translate-document" \
-F "translate_to=en"
Files of 5 pages or fewer return the result inline; otherwise poll the job, then download it as txt:
curl -L "https://ocr.chat/api/v1/ocr/JOB_UUID/download/?format=txt" \
-H "Authorization: Bearer YOUR_API_TOKEN" -o result.txt
Read the API docs โ