📚 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.

Free No Signup Required Browser-Based Live Data

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

  1. Enter the 10-digit or 13-digit ISBN number
  2. Click Search Book
  3. 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.

  1. Weighted sum of the first twelve digits: 9+21+8+0+4+15+1+15+2+18+5+9 = 107
  2. 107 mod 10 = 7
  3. (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.

  1. 0451526538 — weighted sum divides exactly by 11
  2. 043942089X — the check value is 10, written X
  3. 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.

  1. Take the first nine digits: 045152653
  2. Prefix 978 → 978045152653
  3. 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.

ISBNFormValid?
0451526538ISBN-10Yes
9780451526533ISBN-13Yes
043942089XISBN-10 with X check digitYes
0140328726ISBN-10Yes
0451526539ISBN-10, one digit changedNo — check digit fails
9780451526534ISBN-13, one digit changedNo — check digit fails
12345Neither lengthNo — 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.

ElementWhat it identifies
Prefix (978 or 979)ISBN-13 only. 979 has no ISBN-10 equivalent
Registration groupCountry, region or language area
RegistrantThe publisher. Large publishers get short registrant codes and therefore more title numbers
PublicationThe specific edition and format
Check digitValidates 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?
An International Standard Book Number (ISBN) is a unique 10 or 13-digit commercial book identifier assigned to every published edition of a book.
Can I search both ISBN-10 and ISBN-13 formats?
Yes, our tool automatically normalizes and queries both standard 10-digit and 13-digit ISBN codes.
What is the difference between ISBN-10 and ISBN-13?
ISBN-13 has been the standard since 2007 and matches the EAN barcode system, usually starting 978 or 979. ISBN-10 is the older form. Most books published since then carry only a 13-digit number.
How does the check digit work?
ISBN-10 uses a weighted sum modulo 11, where a remainder of 10 is written as X. ISBN-13 uses alternating weights of 1 and 3 modulo 10. This tool validates the check digit before searching, so a typo is reported as a typo rather than as a book that does not exist.
Why does a valid ISBN return no book?
Because the catalogue does not hold it. Coverage is strongest for English-language and widely distributed titles, and thinner for small presses, non-English publishing and very recent releases. A valid ISBN not in the catalogue is a gap, not an error.
Do different editions share an ISBN?
No. Each format and edition gets its own — hardback, paperback and ebook of the same book are three different ISBNs, which is why a search can return an edition other than the one in your hand.
Do self-published books have ISBNs?
Only if the publisher obtained one. Several platforms distribute without an ISBN using their own identifiers, so those books cannot be looked up this way at all.
Is my search recorded?
The ISBN is sent to the book catalogue API, which is what the lookup requires. We do not log it.

References & Further Reading

  • International ISBN AgencyThe 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 APIThe catalogue and endpoint this tool queries, and the documentation for the fields it returns
By OnlineToolHubs Team • September 2026