# Chewy Cat Litter Product Scraper

**Use case:** 

Scrape cat litter products from Chewy.com with name, price, autoship price, brand, and rating. Export structured results to JSON or CSV.

## Input

```json
{
  "searchTerm": "cat litter",
  "maxItems": 50
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "image"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "partNumber": {
    "label": "Part Number",
    "format": "text"
  },
  "manufacturer": {
    "label": "Manufacturer",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "displayPrice": {
    "label": "Display Price",
    "format": "text"
  },
  "autoshipPrice": {
    "label": "Autoship Price",
    "format": "text"
  },
  "autoshipDiscountPct": {
    "label": "Autoship Discount Pct",
    "format": "text"
  },
  "strikePrice": {
    "label": "Strike Price",
    "format": "text"
  },
  "strikeSavingsPct": {
    "label": "Strike Savings Pct",
    "format": "text"
  },
  "pricePerUnit": {
    "label": "Price Per Unit",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Rating Count",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "inStock": {
    "label": "In Stock",
    "format": "text"
  },
  "isDiscontinued": {
    "label": "Is Discontinued",
    "format": "text"
  },
  "isNew": {
    "label": "Is New",
    "format": "text"
  },
  "isDeal": {
    "label": "Is Deal",
    "format": "text"
  },
  "isChewyExclusive": {
    "label": "Is Chewy Exclusive",
    "format": "text"
  },
  "isPrescription": {
    "label": "Is Prescription",
    "format": "text"
  },
  "isRxVetDiet": {
    "label": "Is Rx Vet Diet",
    "format": "text"
  },
  "isAutoshipAllowed": {
    "label": "Is Autoship Allowed",
    "format": "text"
  },
  "isBundle": {
    "label": "Is Bundle",
    "format": "text"
  },
  "hasMoreChoices": {
    "label": "Has More Choices",
    "format": "text"
  },
  "catalogEntryId": {
    "label": "Catalog Entry Id",
    "format": "number"
  },
  "categoryId": {
    "label": "Category Id",
    "format": "text"
  },
  "supplementalImages": {
    "label": "Supplemental Images",
    "format": "image"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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