# Romantic Books Data Extractor from Goodreads

**Use case:** 

Extract detailed data for 200 romantic books from Goodreads. Get titles, authors, ratings, and more for your reading lists or analysis.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.goodreads.com/shelf/show/fantasy"
    }
  ],
  "shelf": "romantic",
  "results_wanted": 200,
  "max_pages": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "ratingCount": {
    "label": "Total Ratings",
    "format": "number"
  },
  "reviewCount": {
    "label": "Total Reviews",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "genres": {
    "label": "Genres",
    "format": "array"
  },
  "isbn": {
    "label": "ISBN",
    "format": "text"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  },
  "publishDate": {
    "label": "Publication Date",
    "format": "text"
  },
  "image": {
    "label": "Cover Image",
    "format": "image"
  },
  "url": {
    "label": "Goodreads URL",
    "format": "link"
  }
}
```

## About this Actor

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