Free tools · Understand
Translate document
The text of a document in another language, as text. Runs on your credits in the console.
This one runs on your credits. The text of a document in another language, as text. Runs on your credits in the console.
Sign in and get 500 free credits every month — enough for many files — then drop the file in the workbench and run translate document there.
Pick a file below to see exactly what it would cost.
Runs on your credits in the console — 500 free a month, about 4 per megabyte here.
How to translate document
- Sign in — 500 free credits a month.
- Drop the document, pick the language.
- Run Translate and download the text.
What happens to your file
The document’s text is extracted in reading order and translated by a model inside Fylane’s sandbox. The result is text — the layout of the original is not rebuilt around the new words.
One run covers 6,000 characters, about two pages. Longer documents are translated from the start and flagged as truncated; split them first for the rest.
Questions
Do I get a translated PDF back?
Not yet — you get the translated text, which you can paste into the original’s layout. Layout-preserving translation is on the list.
What does it cost?
Four credits per megabyte of the document, minimum four.
Related tools
Do this in code
curl -X POST https://api.fylane.dev/v1/jobs \
-H "Authorization: Bearer $FYLANE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"file_id": "<file id>",
"operation": "ai.translate",
"options": {
"language": "en"
}
}'The same operation, ai.translate — The document’s text translated into another language by the in-sandbox model; `language` is a code such as `fr` or `es`. Up to the model’s window of 6,000 characters; longer documents are translated up to it and flagged `truncated`. Upload first with the quickstart; every option is on the operations page. 500 free credits a month, then $5 per thousand.