# Scrape Goodreads reviews for The Great Gatsby

**Use case:** 

Export public Goodreads metadata, ratings, and a small sample of reader reviews for The Great Gatsby.

## Input

```json
{
  "bookUrls": [
    {
      "url": "https://www.goodreads.com/book/show/41733839-the-great-gatsby"
    }
  ],
  "queries": [],
  "includeReviews": true,
  "maxReviewsPerBook": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "itemType": {
    "label": "Type",
    "format": "text"
  },
  "bookId": {
    "label": "Book ID",
    "format": "text"
  },
  "bookUrl": {
    "label": "Book URL",
    "format": "link"
  },
  "bookTitle": {
    "label": "Book title",
    "format": "text"
  },
  "authors": {
    "label": "Authors",
    "format": "object"
  },
  "averageRating": {
    "label": "Average rating",
    "format": "number"
  },
  "ratingsCount": {
    "label": "Ratings",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "text"
  },
  "rating": {
    "label": "Review rating",
    "format": "number"
  },
  "reviewText": {
    "label": "Review text",
    "format": "text"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  }
}
```

## About this Actor

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