# Zazzle T-Shirt Price Scraper

**Use case:** 

Scrape Zazzle t-shirt listings sorted by lowest price. Export title, price, rating, seller, image and product URL.

## Input

```json
{
  "maxItems": 20,
  "searchQuery": "t-shirt",
  "sort": "price_asc",
  "extractOptionalFields": false
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "salePrice": {
    "label": "Sale Price",
    "format": "text"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "designerName": {
    "label": "Designer",
    "format": "text"
  },
  "storeName": {
    "label": "Store",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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