# Goodreads Romantasy Book Search

**Use case:** 

Search Goodreads for romantasy books and export titles, authors, ratings, review counts, years, covers, and URLs.

## Input

```json
{
  "searchQueries": [
    "romantasy",
    "fantasy romance"
  ],
  "maxBooksPerSearch": 50,
  "maxSearchPages": 5,
  "sort": "relevance",
  "maxRequestRetries": 3
}
```

## 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.