# Get Goodreads Reviews for The Hunger Games

**Use case:** 

Extract reader ratings and review text for The Hunger Games from Goodreads in a structured dataset.

## Input

```json
{
  "bookUrls": [
    {
      "url": "https://www.goodreads.com/book/show/2767052-the-hunger-games"
    }
  ],
  "maxReviewsPerBook": 10,
  "maxPagesPerBook": 1
}
```

## Output

```json
{
  "book_image_url": {
    "label": "Cover",
    "format": "image"
  },
  "book_title": {
    "label": "Book",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_text": {
    "label": "Review",
    "format": "text"
  },
  "reviewer_name": {
    "label": "Reviewer",
    "format": "text"
  },
  "like_count": {
    "label": "Likes",
    "format": "number"
  },
  "created_at": {
    "label": "Created",
    "format": "date"
  },
  "review_url": {
    "label": "Review URL",
    "format": "link"
  }
}
```

## About this Actor

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