# Chitai-Gorod Book Price & Stock Monitor

**Use case:** 

Track book prices & stock on chitai-gorod.ru — get only what changed since last run: drops, rises, stock-outs. Run on a schedule. No API key.

## Input

```json
{
  "categoryUrls": [
    "https://www.chitai-gorod.ru/catalog/books-18030"
  ],
  "searchQueries": [
    "гарри поттер"
  ],
  "maxPagesPerCategory": 10,
  "maxItems": 0,
  "maxConcurrency": 4,
  "monitorMode": true,
  "onlyChanges": true,
  "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.