# eBay Seller URL Extractor

**Use case:** 

Extract listings from a public eBay seller URL with price, condition, image, item URL, and seller feedback data.

## Input

```json
{
  "sellerUsernames": [
    "best_buy"
  ],
  "startUrls": [
    {
      "url": "https://www.ebay.com/sch/best_buy/m.html?_ipg=25"
    }
  ],
  "maxItems": 25,
  "maxItemsPerSeller": 25,
  "countryCode": "US",
  "proxyGroups": [
    "RESIDENTIAL"
  ],
  "requestDelayMs": 2500,
  "includeSponsored": true
}
```

## Output

```json
{
  "sellerUsername": {
    "label": "Seller"
  },
  "listingTitle": {
    "label": "Listing title"
  },
  "price": {
    "label": "Price"
  },
  "shipping": {
    "label": "Shipping"
  },
  "condition": {
    "label": "Condition"
  },
  "itemUrl": {
    "label": "Item URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "sellerFeedbackScore": {
    "label": "Feedback score"
  },
  "sellerFeedbackPercent": {
    "label": "Positive feedback"
  },
  "rank": {
    "label": "Rank"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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