# Four Paws (4lapy) Pet Product Search

**Use case:** 

Search Four Paws (4lapy.ru) by product name or keyword and get price, discount, stock and rating for every match. No login. Export to Excel, CSV or Sheets.

## Input

```json
{
  "productUrls": [],
  "searchQueries": [
    "Royal Canin",
    "наполнитель"
  ],
  "categoryUrls": [
    "https://4lapy.ru/catalog/koshki/"
  ],
  "sort": "popular",
  "maxPagesPerCategory": 10,
  "maxItems": 0,
  "monitorMode": false,
  "onlyChanges": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price ₽",
    "format": "number"
  },
  "oldPrice": {
    "label": "Old price ₽",
    "format": "number"
  },
  "discountPct": {
    "label": "Discount %",
    "format": "number"
  },
  "stock": {
    "label": "Stock (qty)",
    "format": "number"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [4lapy Scraper](https://apify.com/sashaebashu/4lapy-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sashaebashu/4lapy-scraper) to learn more, explore other use cases, and run it yourself.