Open Library

Books, authors and covers from the Internet Archive.

📚 Open DataHEALTHYchecked 2h ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

Open Library exposes bibliographic data for tens of millions of books — search, works, editions, covers — maintained by the Internet Archive. Great for reading apps and coursework. Bulk users should download the data dumps instead of crawling the API.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · healthy
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://openlibrary.org/search.json?q=things+fall+apart&limit=1

{
  "numFound": 214,
  "docs": [
    {
      "title": "Things Fall Apart",
      "author_name": [
        "Chinua Achebe"
      ],
      "first_publish_year": 1958
    }
  ]
}
Call itcurl · fetch · python
curl "https://openlibrary.org/search.json?q=things+fall+apart&limit=1"
const res = await fetch("https://openlibrary.org/search.json?q=things+fall+apart&limit=1");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://openlibrary.org/search.json?q=things+fall+apart&limit=1")
print(res.json())
Endpoints · 4HealthyFULL DOCS ↗
Monitored path responding — GET /search.json?q=python&limit=3checked 2h ago
GET/search.json?q=python&limit=3PROBED

Full-text book search.

GET/works/OL45804W.json

Work metadata by Open Library work ID.

GET/authors/OL23919A.json

Author record by OLID.

GET/subjects/science.json?limit=5

Books tagged with a subject.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

Open Library: common questions

Is Open Library free to use?

Yes — Open Library is a free open data API. Free tier: Unlimited within courtesy limits. Whether the free tier allows commercial use is unclear — check the provider docs.

Does Open Library need an API key?

No — Open Library needs no API key or signup. You can call it straight away; rate limits still apply (Soft — identified UA appreciated).

Can I call Open Library from the browser?

Yes — Open Library 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 Open Library up right now?

As of our last scheduled check, Open Library is healthy. We re-probe it every sweep — the status badge and uptime chart above always show the latest.