# Chitai-Gorod Book Catalog Export

**Use case:** 

Export the full chitai-gorod.ru book catalog — title, price, old price, discount, stock, author, publisher and rating — as clean JSON/CSV. No API key.

## Input

```json
{
  "categoryUrls": [
    "https://www.chitai-gorod.ru/catalog/books-18030"
  ],
  "searchQueries": [
    "гарри поттер"
  ],
  "maxPagesPerCategory": 10,
  "maxItems": 500,
  "maxConcurrency": 4,
  "monitorMode": false,
  "onlyChanges": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "store": {
    "label": "Store",
    "format": "text"
  },
  "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"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "available": {
    "label": "In Stock",
    "format": "boolean"
  },
  "quantity": {
    "label": "Qty",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "authors": {
    "label": "Authors",
    "format": "array"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  },
  "binding": {
    "label": "Binding",
    "format": "text"
  },
  "code": {
    "label": "Code",
    "format": "text"
  },
  "pages": {
    "label": "Pages",
    "format": "number"
  },
  "yearPublishing": {
    "label": "Year",
    "format": "text"
  },
  "ratingScore": {
    "label": "Rating",
    "format": "number"
  },
  "ratingReviews": {
    "label": "Reviews",
    "format": "number"
  },
  "picture": {
    "label": "Cover",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "categoryPath": {
    "label": "Source",
    "format": "text"
  },
  "changeType": {
    "label": "Change",
    "format": "text"
  },
  "previousPrice": {
    "label": "Prev Price ₽",
    "format": "number"
  },
  "priceLow30": {
    "label": "30d Low ₽",
    "format": "number"
  },
  "priceHigh30": {
    "label": "30d High ₽",
    "format": "number"
  },
  "firstSeenAt": {
    "label": "First Seen",
    "format": "date"
  },
  "lastConfirmedAt": {
    "label": "Last Confirmed",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

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