# ShopGoodwill Jewelry Auction Monitor

**Use case:** 

Monitor ShopGoodwill jewelry auctions by price range and export titles, bids, prices, images, and listing URLs.

## Input

```json
{
  "searchTerm": "jewelry",
  "startUrls": [
    {
      "url": "https://shopgoodwill.com/categories/listing?st=laptop&sg=&c=&s=&lp=0&hp=999999&sbn=false&spo=false&snpo=false&socs=false&sd=false&sca=false&cadb=7&scs=false&sis=false&col=1&p=1&ps=40&desc=false&ss=0&UseBuyerPrefs=true"
    }
  ],
  "maxItems": 200,
  "activeOnly": false,
  "includeClosedAuctions": false,
  "closedAuctionDaysBack": 7,
  "minPrice": 5,
  "maxPrice": 100,
  "sortBy": "ending_soon"
}
```

## Output

```json
{
  "itemId": {
    "label": "Item ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "currentPrice": {
    "label": "Current price",
    "format": "number"
  },
  "bidsCount": {
    "label": "Bids",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "endTime": {
    "label": "End time",
    "format": "date"
  },
  "remainingTime": {
    "label": "Remaining time",
    "format": "text"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "image"
  },
  "categoryName": {
    "label": "Category",
    "format": "text"
  },
  "categoryFullName": {
    "label": "Category path",
    "format": "text"
  },
  "sellerId": {
    "label": "Seller ID",
    "format": "number"
  },
  "minimumBid": {
    "label": "Minimum bid",
    "format": "number"
  },
  "startingPrice": {
    "label": "Starting price",
    "format": "number"
  },
  "buyNowPrice": {
    "label": "Buy now price",
    "format": "number"
  },
  "shippingPrice": {
    "label": "Shipping price",
    "format": "number"
  },
  "isStock": {
    "label": "Stock item",
    "format": "boolean"
  },
  "listingType": {
    "label": "Listing type",
    "format": "number"
  },
  "itemQuantity": {
    "label": "Quantity",
    "format": "number"
  },
  "itemCount": {
    "label": "Result count",
    "format": "number"
  },
  "sourceSearchTerm": {
    "label": "Source search term",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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