📚 Book & ISBN Search Explorer
ISBN book lookup in the Open Library catalogue — title, authors, publisher, date, pages, subjects and cover — with the check digit validated first.
What Book & ISBN Search Explorer Does
This tool looks up a book by ISBN in the Open Library catalogue, returning title, authors, publisher, publication date, page count, subjects and cover image.
Before anything is sent anywhere, the ISBN is checked. Both ISBN formats carry a check digit computed from the preceding digits, which means a mistyped number can be caught locally and immediately rather than coming back as a fruitless search. If the check fails, the problem is a typo in what you entered, not a gap in the catalogue — and those two situations look identical if nobody separates them.
It is worth being clear about what an ISBN identifies: a specific edition and format of a book, not the book itself. The hardback, the paperback, the large-print edition and the 2011 reissue all carry different ISBNs, which is why searching one will not find the others.
How to Use Book & ISBN Search Explorer
- Enter the 10-digit or 13-digit ISBN number
- Click Search Book
- View cover image, author, publication date, publisher, page count, and genre tags
Formula Used by Book & ISBN Search Explorer
The ISBN-13 check digit
sum = Σ digit_i × (1 if i even, 3 if i odd) for the first 12; check = (10 − sum mod 10) mod 10
- alternating weights
- 1 and 3, starting at 1 for the first digit
- check
- The thirteenth digit, which must equal this result
Worked example
ISBN 9780451526533 — The Adventures of Tom Sawyer.
- Weighted sum of the first twelve digits: 9+21+8+0+4+15+1+15+2+18+5+9 = 107
- 107 mod 10 = 7
- (10 − 7) mod 10 = 3
Result: Check digit 3, matching the printed ISBN. Change any single digit and the sum shifts by an amount that cannot leave the remainder unchanged — which is exactly what makes single-digit typos detectable.
The ISBN-10 check digit
sum = Σ digit_i × (10 − i) for all ten digits; valid when sum mod 11 = 0
- X
- Used as the final digit when the check value is 10, because 11 possible values will not fit in one decimal digit
Worked example
Two valid ISBN-10s, one of them ending in X.
- 0451526538 — weighted sum divides exactly by 11
- 043942089X — the check value is 10, written X
- 0451526539 — one digit changed from the first; the sum no longer divides by 11
Result: The first two validate, the third is rejected. Mod 11 is why ISBN-10 needs an X and ISBN-13, using mod 10, never does.
Converting between the two forms
ISBN-13 = 978 + first 9 digits of the ISBN-10 + a new check digit
- 978
- The original prefix assigned to books in the EAN system
- new check digit
- Recomputed under mod 10 — the ISBN-10 check digit is discarded, not carried over
Worked example
Converting 0451526538 in both directions.
- Take the first nine digits: 045152653
- Prefix 978 → 978045152653
- Compute the mod-10 check digit → 3
Result: 9780451526533, and converting back returns 0451526538. Note the limit: this only works for 978-prefixed ISBN-13s. A 979-prefixed ISBN has no ISBN-10 equivalent at all, because the ISBN-10 space cannot represent it.
Validation Results
Run against the check-digit rules above. The third and fourth are the first two with a single digit altered.
| ISBN | Form | Valid? |
|---|---|---|
| 0451526538 | ISBN-10 | Yes |
| 9780451526533 | ISBN-13 | Yes |
| 043942089X | ISBN-10 with X check digit | Yes |
| 0140328726 | ISBN-10 | Yes |
| 0451526539 | ISBN-10, one digit changed | No — check digit fails |
| 9780451526534 | ISBN-13, one digit changed | No — check digit fails |
| 12345 | Neither length | No — an ISBN has 10 or 13 digits |
What the Parts of an ISBN Mean
Five elements, variable in length, which is why hyphen placement differs between ISBNs.
| Element | What it identifies |
|---|---|
| Prefix (978 or 979) | ISBN-13 only. 979 has no ISBN-10 equivalent |
| Registration group | Country, region or language area |
| Registrant | The publisher. Large publishers get short registrant codes and therefore more title numbers |
| Publication | The specific edition and format |
| Check digit | Validates the whole string |
How to Read Your Result
An ISBN is an edition, not a book
This is the source of most confusion about ISBN search. The hardback and the paperback of the same title are different products with different ISBNs, as are a reissue with new cover art, a different territory's edition, the large-print version and the audiobook. Searching the ISBN from your copy finds your copy — it does not find "the book" in any general sense. Catalogues handle this by grouping editions under a work, which is why Open Library distinguishes a work record from the edition records beneath it.
Not found usually means not catalogued
Once the check digit passes, a failed lookup is a statement about the catalogue rather than about the ISBN. Open Library is substantially crowd-sourced and its coverage is uneven — strong on widely held English-language titles, thinner on recent self-published work, academic monographs, non-English publishing and anything obscure. A valid ISBN that returns nothing is normally a real book nobody has added yet.
The check digit catches typos, not wrong books
It validates that the digits are internally consistent, which catches a mistyped digit and most transpositions. It cannot tell you that you typed a different real ISBN by accident — that string will validate perfectly and return somebody else's book. If the result is confidently wrong rather than missing, check the number against the copyright page rather than assuming the catalogue is at fault.
Where to find the ISBN
On the barcode on the back cover, and printed on the copyright page inside. Books published before the 1970s predate the system and have none. Since 2007 the 13-digit form has been standard, so a modern book generally shows only that; older books may show a 10-digit ISBN alone, and books from the transition period often show both — in which case they are the same book and convert into each other exactly.
Limitations & Accuracy Notes
- One catalogue. Open Library only — no Google Books, WorldCat or national library fallback, so a title missing there is missing here.
- ISBN only. There is no search by title, author or keyword, so you cannot find a book whose number you do not have.
- No price, availability, stock or retailer links of any kind.
- Metadata quality varies. Because the catalogue is crowd-sourced, page counts, subjects, publisher names and dates are inconsistent between records and occasionally wrong.
- Cover images are missing for many editions, and a missing cover says nothing about whether the record itself is good.
- Does not group editions. It returns the edition matching the ISBN you entered and will not show you the other formats of the same work.
- Validation confirms the check digit and the length. It cannot confirm that the ISBN was ever actually assigned to a published book.
- ISBN-10 conversion applies only to 978-prefixed numbers; 979-prefixed ISBNs have no 10-digit form.
Frequently Asked Questions
What is an ISBN number?
Can I search both ISBN-10 and ISBN-13 formats?
What is the difference between ISBN-10 and ISBN-13?
How does the check digit work?
Why does a valid ISBN return no book?
Do different editions share an ISBN?
Do self-published books have ISBNs?
Is my search recorded?
References & Further Reading
- International ISBN Agency — The body governing the standard: structure of the five elements, the 978 and 979 prefixes, and the rule that each format and edition takes its own ISBN
- Open Library — Books API — The catalogue and endpoint this tool queries, and the documentation for the fields it returns