# Goodreads Book Reviews Newest First Scraper

**Use case:** 

Scrape Goodreads reviews for any book sorted by date added with reviewer name, rating, date, review text, and profile URL. Export to JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.goodreads.com/book/show/4671.The_Great_Gatsby/reviews",
  "maxItems": 5,
  "bookId": "4671",
  "sort": "date_added"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "bookId": {
    "label": "Book ID",
    "format": "text"
  },
  "bookTitle": {
    "label": "Book Title",
    "format": "text"
  },
  "reviewerName": {
    "label": "Reviewer Name",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewDate": {
    "label": "Review Date",
    "format": "text"
  },
  "reviewText": {
    "label": "Review Text",
    "format": "text"
  },
  "helpfulCount": {
    "label": "Helpful Count",
    "format": "number"
  },
  "spoiler": {
    "label": "Spoiler",
    "format": "boolean"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "url"
  },
  "reviewerProfileUrl": {
    "label": "Reviewer Profile URL",
    "format": "url"
  },
  "scrapedTimestamp": {
    "label": "Scraped Date",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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