# Harry Potter Book Search

**Use case:** 

Search Open Library for books matching harry potter with titles, authors, publish years, ISBNs and edition counts for catalog research.

## Input

```json
{
  "searchQuery": "harry potter",
  "maxItems": 50
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "authorNames": {
    "label": "Authors"
  },
  "firstPublishYear": {
    "label": "First Published"
  },
  "editionCount": {
    "label": "Editions"
  },
  "isbn": {
    "label": "ISBN"
  },
  "subjects": {
    "label": "Subjects"
  },
  "coverUrl": {
    "label": "Cover"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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