# Scrape ShopGoodwill auctions ending soon

**Use case:** 

List auctions sorted by soonest-ending with price, bids and time-left for last-minute bid sniping.

## Input

```json
{
  "searchText": "laptop",
  "categoryId": 0,
  "buyNowOnly": false,
  "pickupOnly": false,
  "searchDescriptions": false,
  "includeClosedAuctions": false,
  "closedAuctionDaysBack": 7,
  "sortBy": "ending",
  "fetchDetails": false,
  "maxItems": 25,
  "monitorMode": false,
  "alertOnNewItem": true,
  "alertOnBidChange": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Item",
    "format": "string"
  },
  "current_price": {
    "label": "Price ($)",
    "format": "number"
  },
  "num_bids": {
    "label": "Bids",
    "format": "integer"
  },
  "buy_now_price": {
    "label": "Buy Now ($)",
    "format": "number"
  },
  "end_time": {
    "label": "Ends",
    "format": "string"
  },
  "remaining_time": {
    "label": "Time left",
    "format": "string"
  },
  "seller_name": {
    "label": "Seller",
    "format": "string"
  },
  "category_name": {
    "label": "Category",
    "format": "string"
  },
  "shipping_price": {
    "label": "Shipping ($)",
    "format": "number"
  },
  "image_url": {
    "label": "Photo",
    "format": "string"
  },
  "item_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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