# Chitai-Gorod Book Search Scraper

**Use case:** 

Search chitai-gorod.ru by keyword and export every book with price, discount, stock, author and rating. Track results on a schedule. No login needed.

## Input

```json
{
  "categoryUrls": [
    "https://www.chitai-gorod.ru/catalog/books-18030"
  ],
  "searchQueries": [
    "Гарри Поттер",
    "Толкин"
  ],
  "maxPagesPerCategory": 10,
  "maxItems": 200,
  "maxConcurrency": 4,
  "monitorMode": false,
  "onlyChanges": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "name": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price ₽",
    "format": "number"
  },
  "oldPrice": {
    "label": "Old Price ₽",
    "format": "number"
  },
  "discountPct": {
    "label": "Discount %",
    "format": "number"
  },
  "available": {
    "label": "In Stock",
    "format": "boolean"
  },
  "quantity": {
    "label": "Qty",
    "format": "number"
  },
  "changeType": {
    "label": "Change",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Chitai-Gorod Price & Stock Monitor](https://apify.com/sashaebashu/chitai-gorod-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sashaebashu/chitai-gorod-monitor) to learn more, explore other use cases, and run it yourself.