# Goodreads Market Research Reading List

**Use case:** 

Run several Goodreads topic searches at once to compare book demand, ratings, publication years, and URLs for market research.

## Input

```json
{
  "searchQueries": [
    "climate fiction",
    "cli-fi",
    "environmental thriller"
  ],
  "maxBooksPerSearch": 100,
  "maxSearchPages": 10,
  "sort": "relevance",
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Cover",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingsCount": {
    "label": "Ratings",
    "format": "number"
  },
  "publishedYear": {
    "label": "Published",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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