Find books by title
get_book_by_titleSearch for books by title on Open Library to find matching works, editions, and ISBNs. Page through results with offset and limit.
Instructions
Search for a book by its title on Open Library. Returns at most limit results (default 10) together with num_found, the total number of matches; page through them with offset. Each result carries best_edition — one edition of the work, with its isbn_13/isbn_10 where Open Library has them, and its edition_key, which can be passed to get_book_by_id as { idType: "olid" } for that edition's full record.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (1-50, default 10). | |
| title | Yes | The title of the book to search for. | |
| offset | No | Number of results to skip, for paging through the total reported as num_found (0-1000, default 0). |