# Open Library Sci-Fi Books Scraper: ISBN, Author, Year

**Use case:** 

Science fiction book metadata from Open Library: titles, authors, first publish year, language, and ISBNs for building a genre reading list.

## Input

```json
{
  "source": "openlibrary",
  "query": "science fiction",
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "authors": {
    "label": "Authors",
    "format": "array"
  },
  "publishedDate": {
    "label": "Published",
    "format": "text"
  },
  "isbn": {
    "label": "ISBN",
    "format": "text"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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