# Find eBay auctions ending soon

**Use case:** 

Export a bounded sample of active US auction listings sorted by ending soonest for collectible-card market monitoring.

## Input

```json
{
  "searchQueries": [
    "pokemon card psa"
  ],
  "startUrls": [],
  "marketplace": "US",
  "maxItemsPerQuery": 20,
  "maxPagesPerQuery": 1,
  "sort": "ending_soonest",
  "listingType": "auction",
  "conditions": [],
  "freeShippingOnly": false,
  "includeDetails": false,
  "maxRequestRetries": 2,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "shippingCost": {
    "label": "Shipping",
    "format": "number"
  },
  "totalPrice": {
    "label": "Total price",
    "format": "number"
  },
  "condition": {
    "label": "Condition",
    "format": "string"
  },
  "listingType": {
    "label": "Listing type",
    "format": "string"
  },
  "sellerUsername": {
    "label": "Seller",
    "format": "string"
  },
  "soldCount": {
    "label": "Sold",
    "format": "integer"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "string"
  },
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "itemId": {
    "label": "Item ID",
    "format": "string"
  },
  "url": {
    "label": "Listing URL",
    "format": "string"
  },
  "detailStatus": {
    "label": "Detail status",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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