Wolne Lektury
Polish free-library books, authors and epochs as JSON
A keyless catalog API for WolneLektury.pl, Poland's free digital library of public-domain and open-licensed literature. Query books, authors, genres and literary epochs, each returning tidy JSON with cover art, colors and download links. The full book list is a multi-megabyte payload, so lean on the smaller collection endpoints for quick calls.
GET https://wolnelektury.pl/api/epochs/?format=json
[
{
"url": "https://wolnelektury.pl/katalog/epoka/barok/",
"href": "https://wolnelektury.pl/api/epochs/barok/?format=json",
"name": "Barok",
"slug": "barok"
}
]curl "https://wolnelektury.pl/api/epochs/?format=json"const res = await fetch("https://wolnelektury.pl/api/epochs/?format=json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://wolnelektury.pl/api/epochs/?format=json")
print(res.json())/epochs/?format=jsonPROBEDPolish free-library books, authors and epochs as JSON
/epochs/?limit=5Epochs — documented GET route.
/epochs/?page=1Epochs — documented GET route.
/api/books/Books — documented GET route.
/api/audiobooks/Audiobooks — documented GET route.
/api/daisy/Daisy — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Wolne Lektury: common questions
Is Wolne Lektury free to use?
Yes — Wolne Lektury is a free books & words API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Wolne Lektury need an API key?
No — Wolne Lektury needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Wolne Lektury from the browser?
Yes — Wolne Lektury returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Wolne Lektury up right now?
As of our last scheduled check, Wolne Lektury is healthy with 75.5% uptime over 90 days and a 1145 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.