# Bring a Trailer Live Auction Scraper

**Use case:** 

Scrape live Bring a Trailer auctions with bids, end times, countries, images, and vehicle listing URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://bringatrailer.com/auctions/"
    }
  ],
  "maxItems": 100,
  "minBid": 0,
  "countryCode": "",
  "includeExcerpt": true
}
```

## Output

```json
{
  "listingId": {
    "label": "BaT listing ID"
  },
  "title": {
    "label": "Auction title",
    "format": "text"
  },
  "year": {
    "label": "Year"
  },
  "url": {
    "label": "Auction URL",
    "format": "link"
  },
  "currentBid": {
    "label": "Current bid",
    "format": "number"
  },
  "currentBidFormatted": {
    "label": "Current bid formatted"
  },
  "currency": {
    "label": "Currency"
  },
  "country": {
    "label": "Country"
  },
  "countryCode": {
    "label": "Country code"
  },
  "endTime": {
    "label": "End time",
    "format": "date"
  },
  "noReserve": {
    "label": "No reserve",
    "format": "boolean"
  },
  "premium": {
    "label": "Premium",
    "format": "boolean"
  },
  "thumbnailUrl": {
    "label": "Thumbnail URL",
    "format": "image"
  },
  "excerpt": {
    "label": "Excerpt"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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