# Export eBay UK search listings to CSV

**Use case:** 

Scrape eBay.co.uk search results into CSV or JSON with GBP prices, delivery cost, total, condition and seller location for any keyword.

## Input

```json
{
  "searchQueries": [
    "lego star wars set"
  ],
  "market": "UK",
  "maxListingsPerSearch": 60,
  "condition": "any",
  "listingType": "all",
  "freeShippingOnly": false,
  "sellerLocation": "any",
  "sort": "best_match",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "query": {
    "label": "Query"
  },
  "title": {
    "label": "Item"
  },
  "price": {
    "label": "Price"
  },
  "shippingCost": {
    "label": "Shipping"
  },
  "totalPrice": {
    "label": "Total"
  },
  "currency": {
    "label": "Currency"
  },
  "condition": {
    "label": "Condition"
  },
  "listingType": {
    "label": "Type"
  },
  "bidsCount": {
    "label": "Bids"
  },
  "bestOfferAvailable": {
    "label": "Best offer"
  },
  "itemLocation": {
    "label": "Location"
  },
  "itemId": {
    "label": "Item ID"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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