# Douban Book Top 250 Scraper - ISBN & Publisher

**Use case:** 

Scrape the Douban Top 250 books with author, publisher, publish date, pages, ISBN, price, rating and vote count. Build a Chinese book dataset.

## Input

```json
{
  "mode": "books",
  "collection": "top250",
  "searchQueries": [
    "科幻"
  ],
  "startUrls": [],
  "tag": "",
  "city": "beijing",
  "maxItems": 250,
  "includeDetails": true,
  "includeCast": true,
  "includeAwards": true,
  "maxPerSubject": 100,
  "detailConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "authors": {
    "label": "Authors"
  },
  "publisher": {
    "label": "Publisher"
  },
  "publishDate": {
    "label": "Published"
  },
  "pages": {
    "label": "Pages"
  },
  "isbn": {
    "label": "ISBN"
  },
  "price": {
    "label": "Price"
  },
  "rating": {
    "label": "Rating"
  },
  "ratingVotes": {
    "label": "Votes"
  },
  "rank": {
    "label": "Rank"
  },
  "url": {
    "label": "Douban URL"
  }
}
```

## About this Actor

This example demonstrates how to use [Douban Scraper - Movies, TV, Books, Music & Reviews](https://apify.com/scrapesage/douban-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/douban-scraper) to learn more, explore other use cases, and run it yourself.