# Look up any book by ISBN or title

**Use case:** 

Bulk book metadata from Open Library: authors, publisher, year, editions, subjects, ratings and cover. By ISBN, title or author.

## Input

```json
{
  "searchQueries": [
    "dune"
  ],
  "isbns": [
    "9780441013593",
    "9780451524935"
  ],
  "maxResultsPerQuery": 10,
  "readableOnly": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "authors": {
    "label": "Authors",
    "format": "array"
  },
  "firstPublishYear": {
    "label": "Year",
    "format": "number"
  },
  "publishers": {
    "label": "Publisher",
    "format": "array"
  },
  "isbn": {
    "label": "ISBN",
    "format": "text"
  },
  "editionCount": {
    "label": "Editions",
    "format": "number"
  },
  "ratingsAverage": {
    "label": "Rating",
    "format": "number"
  },
  "ratingsCount": {
    "label": "Ratings",
    "format": "number"
  },
  "numberOfPages": {
    "label": "Pages",
    "format": "number"
  },
  "subjects": {
    "label": "Subjects",
    "format": "array"
  },
  "hasFullText": {
    "label": "Readable",
    "format": "boolean"
  },
  "coverUrl": {
    "label": "Cover",
    "format": "image"
  },
  "url": {
    "label": "Link",
    "format": "link"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Books & ISBN Scraper: Open Library](https://apify.com/glitchbound/books-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/glitchbound/books-scraper) to learn more, explore other use cases, and run it yourself.