# 📚 OpenLibrary Scraper — Books, Authors, ISBNs & Ratings

**Use case:** 

No-code, cheap OpenLibrary API. Scrape book data: title, authors, publishers, publish year, subjects, ISBNs, pages, ratings & cover URL — cheapest per item.

## Input

```json
{
  "searchTerms": [
    "machine learning"
  ],
  "authors": [
    "J.R.R. Tolkien"
  ],
  "subjects": [
    "fantasy"
  ],
  "isbns": [
    "9780262035613"
  ],
  "sort": "relevance",
  "maxResultsPerQuery": 50
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "subtitle": {
    "label": "Subtitle",
    "format": "text"
  },
  "authors": {
    "label": "Authors",
    "format": "text"
  },
  "firstPublishYear": {
    "label": "First Publish Year",
    "format": "number"
  },
  "publishers": {
    "label": "Publishers",
    "format": "text"
  },
  "subjects": {
    "label": "Subjects",
    "format": "text"
  },
  "languages": {
    "label": "Languages",
    "format": "text"
  },
  "editionCount": {
    "label": "Edition Count",
    "format": "number"
  },
  "isbn": {
    "label": "Isbn",
    "format": "text"
  },
  "isbns": {
    "label": "Isbns",
    "format": "text"
  },
  "pages": {
    "label": "Pages",
    "format": "number"
  },
  "ratingAverage": {
    "label": "Rating Average",
    "format": "number"
  },
  "ratingCount": {
    "label": "Rating Count",
    "format": "number"
  },
  "hasFulltext": {
    "label": "Has Fulltext",
    "format": "boolean"
  },
  "coverUrl": {
    "label": "Cover Url",
    "format": "link"
  },
  "olKey": {
    "label": "Ol Key",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenLibrary Book Scraper — Titles, Authors & ISBNs](https://apify.com/hipersoft/openlibrary-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/hipersoft/openlibrary-scraper) to learn more, explore other use cases, and run it yourself.