Best Free Ebook Converter
Kushandura ebooks pakati peEPUB, MOBI, AZW3, PDF uye zvimwe ne Calibre - zvakasununguka, hapana watermark, hapana kurodha pasi.
Maitiro ekushanda
- Upload. Choose a ebook file - EPUB, MOBI, AZW3 and more (up to 100 MB).
- Choose a format. Choose the output: EPUB, MOBI, AZW3, PDF, DOCX or TXT.
- Download. The converted ebook downloads otomatiki; hapana chinhu inowanikwa.
Nezve iyi chirongwa
Ebook Converter inoita kuti ebook iite kubva pafomati imwe kuenda kune imwe nekushandisa Calibre paserver: iite EPUB kuita MOBI kana AZW3 yeKindle, iite MOBI kuita EPUB yakajairika, kana kutumira kune PDF, DOCX kana mutauro wakajeka. Calibre inochengeta zvikamu zvebhuku uye hunhu, ichidzokorora mutauro wefomati yaunotsvaga. Iyi ndiyo nzira yakapusa yekuverenga bhuku pachigadzirwa chine fomati dzakasiyana. Kana uchichinja, chinja zvinoenderana nechiyero chekukura uye nenguva yakareba. Hapana watermark, hapana kurodha pasi, inogadziriswa mushure mekunge yagadziriswa.
Chii vanhu vanoshandisa kuti
- Kushandura EPUB kuti MOBI kana AZW3 for a Kindle
- Kuchinja MOBI kuita standard EPUB
- Export an ebook to PDF for printing
- Get an ebook into plain text or DOCX
Developer API
Automatize iyi chirongwa kubva yako pachako code. Send a POST request to the endpoint below and get the same result the web tool produces. It is rate-limited per IP and needs no signup - API keys for higher limits are coming.
https://best.free/api/tools/ebook-converter/
| Parameter | Mufananidzo | Anodarika | Nhoroondo |
|---|---|---|---|
file (faira) |
book.mobi |
Yes | Ebook file, โค25 MB. |
format |
epub |
Hapana | epub / mobi / azw3 / pdf / docx / txt. |
curl -X POST https://best.free/api/tools/ebook-converter/ \
-F 'file=@book.mobi' \
-F 'format=epub' \
-o book.epub
import requests
files = {"file": open("book.mobi", "rb")}
data = {"format": "epub"}
r = requests.post("https://best.free/api/tools/ebook-converter/", files=files, data=data)
with open("book.epub", "wb") as out:
out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
fd.append("format", "epub");
const r = await fetch("https://best.free/api/tools/ebook-converter/", { method: "POST", body: fd });
const blob = await r.blob(); // the book.epub
Kutenda: The converted ebook.