# Open Library Free Ebooks Scraper

**Use case:** 

Find free readable ebooks on Open Library by keyword. Export title, authors, publish year, subjects and read links.

## Input

```json
{
  "maxItems": 25,
  "searchQuery": "science fiction",
  "searchType": "books",
  "ebooksOnly": true
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Cover Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "detailUrl": {
    "label": "Detail URL",
    "format": "link"
  },
  "publicationDate": {
    "label": "Publication Date",
    "format": "text"
  },
  "publishers": {
    "label": "Publishers",
    "format": "text"
  },
  "isbn": {
    "label": "ISBN",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "numberOfPages": {
    "label": "Number of Pages",
    "format": "text"
  },
  "fullDescription": {
    "label": "Description",
    "format": "text"
  },
  "subjects": {
    "label": "Subjects",
    "format": "object"
  },
  "subjectTags": {
    "label": "Subject Tags",
    "format": "object"
  },
  "coverImages": {
    "label": "Cover Images",
    "format": "object"
  },
  "availableFormats": {
    "label": "Available Formats",
    "format": "object"
  },
  "downloadLinks": {
    "label": "Download Links",
    "format": "link"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "editionCount": {
    "label": "Edition Count",
    "format": "text"
  },
  "itemId": {
    "label": "Item ID",
    "format": "text"
  },
  "scrapedTimestamp": {
    "label": "Scraped Date",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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